🍄object
reference types
// creating objects
{name: value} // object literal
new Object() // `new` statement
let obj = Object.create(prototype) // specify an object's prototypeLast updated
reference types
// creating objects
{name: value} // object literal
new Object() // `new` statement
let obj = Object.create(prototype) // specify an object's prototypeLast updated