✨"pure" object
an object without prototype.
JS ⟩ value ⟩ object ⟩ create ⟩ Object.create() ⟩ pure object
Object.create(null)
is an object without prototype.
this "pure" object will not inherit anything❗
does not have
toString()
method.won't work with
+
operator.can't call
__proto__
(accessor).
Last updated