- or download this
> hash = {a:1}
Object { a: 1 }
...
> array.__proto__.__proto__
Object { … }
- or download this
> h={} // empty hash?
Object { }
> h["constructor"] // well, beware of inherited attributes
function Object()
- or download this
> h = Object.create(null)
Object { }
> h["constructor"]
undefined