I want to wrap all Array functions in array object, but in console
>>> Array.prototype
[]
>>> [].prototype
undefined
but when I type Array.prototype
in console it show all functions in autocomple, how can I get those functions? Where are they hidden?