๐object
reference types
an unordered collection of properties (name : value pairs).
// creating objects
{name: value} // object literal
new Object() // `new` statement
let obj = Object.create(prototype) // specify an object's prototype
๐ฏ synonyms๏ผ "hash", "hashtable", "dictionary", "associated array".
Last updated
Was this helpful?