JS: Object.create
Object.create
The most general way to create a object. It lets you specify its parent object, and also specify the new object's properties, and each property's attributes.
Object.create(xParent)-
Return a new empty object such that its parent is xParent.
const xdad = { pp: 7 }; // create xson, with parent xdad const xson = Object.create(xdad); // xson's prototype is xdad console.assert(Reflect.getPrototypeOf(xson) === xdad); Object.create(xParent, {k1:descriptor_1, k2:descriptor_2, etc})-
Return a new object x such that x's parent is xParent and x has specified properties and attributes.
descriptor_n are Property Descriptor.
// create a object with specific parent, properties, and property attributes const xdad = { car: 1 }; const xson = Object.create( xdad, { "toy": { value: 2, writable: true, enumerable: true, configurable: true, }, }, ); // property car is from object xdad console.assert(xson.car === 1); console.assert(xson.toy === 2);
Example. Create object with no parent
// create a object with no parent const xx = Object.create(null); console.log(xx); // [Object: null prototype] {}
Example. Create object with getter and setter
// define getter and setter properties using Object.create const jj = Object.create( Object.prototype, { "a": { get: function () { console.log("getter called"); }, }, "b": { set: function (x) { console.log("setter called with arg " + x); }, }, }, ); jj.a; // prints // getter called jj.b = 3; // prints // setter called with arg 3
JavaScript. Object and Inheritance
- JS: Object (basics)
- JS: Object Overview
- JS: Object Type
- JS: Test is Object Type 📜
- JS: Find Object's sub-type
- JS: Prototype and Inheritance
- JS: Prototype Chain
- JS: Object.prototype.isPrototypeOf
- JS: Get Set Prototype
- JS: Show Prototype Chain 📜
- JS: Prototype Tree
- JS: Dot Notation and Prototype Chain
- JS: Create Object
- JS: Object Literal Expression
- JS: Object.create
- JS: Object Literal Expression vs Object.Create
- JS: Create Object with Parent X
- JS: Prevent Adding Property
- JS: Deep Copy Array or Object 📜
- JS: Test Equality of Array and Object by Content 📜
- JS: Add Method to Prototype
- JS: Object (class)
- JS: Object Constructor
- JS: Object.prototype
JavaScript. Create object, define properties, attributes.
- JS: Object.create
- JS: Use Object.create to Emulate Constructor
- JS: Property Attributes
- JS: Enumerable Property
- JS: Property Descriptor
- JS: Object.defineProperty ❌
- JS: Reflect.defineProperty
- JS: Object.defineProperties
- JS: Object.prototype.propertyIsEnumerable ❌
- JS: Object.getOwnPropertyDescriptor ❌
- JS: Reflect.getOwnPropertyDescriptor
- JS: Object.getOwnPropertyDescriptors