Exploring methods that can be accessed on an array object:
> console.log(Array.prototype)
[]
undefined
> console.log(Array.prototype.push)
[Function: push]
Is there a way to view or log all properties/methods accessible on an object's prototype?