I\'m trying to list all of the global variables, including those refering to built-in objects.
In Chrome\'s console I can simply type this and get back
this
The built-in properties of the global object are non-enumerable, so Object.keys doesn't return them. You can use Object.getOwnPropertyNames instead.