JS: Object Object
What is the Keyword “Object”
Object
is the value of the property key "Object"
of the Global Object
.
window.Object === Object
Type
Type of Object
is a function.
typeof Object === "function"
Parent
Parent of Object
is Function.prototype.
Reflect.getPrototypeOf ( Object ) === Function.prototype
Purpose
Purpose of Object
is:
- To convert Primitive Value to a object.
- Used as a namespace to hold static methods.
- Holds the property key
"prototype"
. Its value is the parent of all instance of object.
Object Consructor
Properties
JavaScript, Object and Inheritance
- JS: Object Tutorial
- JS: Object Overview
- JS: Object Type
- JS: Test is Object Type 🚀
- JS: Determine Type of Object
- JS: Prototype and Inheritance
- JS: Prototype Chain
- JS: Object.prototype.isPrototypeOf
- JS: Get Set Prototype
- JS: Show Prototype Chain 🚀
- JS: Create Object
- JS: Object Literal Expression
- JS: Create Object with Parent X
- JS: Prevent Adding Property
- JS: Deep Copy Object, Array 🚀
- JS: Test Object Equality 🚀
- JS: Add Method to Prototype
- JS: Object Object
- JS: Object Constructor
- JS: Object.prototype