🔰creating objects
// ⭐️ 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 === protoLast updated