Instantiation
โ (process) to create new Object Instance from class
aka Instantiate, Instantiating
Instance
โ
Object created through a class
or Constructor Function
Referencesโ
Constructor Function
โ function to programmatically create Object (& link via__proto__
after Instantiation withnew
)Private Constructor
โ Constructor Function prepend withprivate
to restrict access to within class, prevent Instantiation withnew
Map()
โ Constructor to Instantiatenew
map
Object