🔰creating objects

JSvalueobject ⟩ create

objects can be created with

// ⭐️ creating objects with different prototypes
{name: value}         // object's prototype === Object.prototype
new F()               // object's prototype === F.prototype
Object.create(proto)  // object's prototype === proto

Last updated