In python word there are dir() function which
return a list of valid attributes for that object
In JS words I found:
Object.getOwnPropertyNames
Object.keys
but they don't show ALL attributes:
> Object.getOwnPropertyNames([])
[ 'length' ]
How to get list of all attributes and methods as
concat, entries, every, find....
for Array() for example?