Is there a way to see all the prototypical properties of an array [] or hash {} in Chrome's Dev Tools? I want to illustrate that each time you create a new array or hash you also get a whole slew of properties that come with that array.
For some reason console.log(Array.prototype); doesn't work for me on my Dev Tool (Linux Chrome
console.dir(Array.prototype);
worked for me.