Technology, Science and Universe
Results for {phrase} ({results_count} of {results_count_total})
Displaying {results_count} results of {results_count_total}
o
- Object.getOwnPropertyDescriptor Description: Object.getOwnPropertyDescriptor is a method in JavaScript that allows you to obtain a property descriptor for a specific property(...) Read more
- Object.getOwnPropertyNames Description: Object.getOwnPropertyNames is a method in JavaScript that returns an array of all properties of an object, including non-enumerable(...) Read more
- Object.getPrototypeOf Description: Object.getPrototypeOf is a method in JavaScript that allows you to obtain the prototype of a specified object. This method is(...) Read more
- Object.is Description: Object.is is a method in JavaScript that determines if two values are the same value. Unlike the strict equality operator (===),(...) Read more
- Object.keys Description: Object.keys is a method in JavaScript that allows obtaining an array of the names of the object's own enumerable properties. This(...) Read more
- Object.values Description: The 'Object.values' method in JavaScript is a function that retrieves an array containing the values of the object's own enumerable(...) Read more
- Object.assign Description: Object.assign is a JavaScript method that allows copying all enumerable own properties from one or more source objects to a target(...) Read more
- Object.prototype Description: The prototype object of all objects in JavaScript, known as 'Object.prototype', is the fundamental basis of the inheritance system(...) Read more
- Object.seal Description: Object.seal is a method in JavaScript that allows sealing an object, meaning that no new properties can be added to that object.(...) Read more
- Object.fromEntries Description: Object.fromEntries is a method introduced in ECMAScript 2019 (ES10) that allows transforming a list of key-value pairs into an(...) Read more
- Object.prototype.hasOwnProperty Description: The 'Object.prototype.hasOwnProperty' method is a fundamental function in JavaScript that allows checking if an object has a(...) Read more
- Object.prototype.toString Description: The 'Object.prototype.toString' method in JavaScript is a function that returns a string representation of the object it is applied(...) Read more
- Object.prototype.valueOf Description: The 'Object.prototype.valueOf' method in JavaScript is fundamental for converting objects to primitive values. This method,(...) Read more
- Object.prototype.constructor Description: Object.prototype.constructor is a property in JavaScript that refers to the function that created the prototype of an instance.(...) Read more
- Object.prototype.isPrototypeOf Description: The 'Object.prototype.isPrototypeOf' method is a function in JavaScript that allows determining whether an object exists in the(...) Read more