Skip to content

Instantly share code, notes, and snippets.

@richard512
Created February 18, 2017 10:20
Show Gist options
  • Save richard512/ac39114f0a5a941e1fdfdce9e337e18b to your computer and use it in GitHub Desktop.
Save richard512/ac39114f0a5a941e1fdfdce9e337e18b to your computer and use it in GitHub Desktop.
show all js global variables
(function ()
{
var keys=Object.keys( window );
for (var i in keys)
{
if (typeof window[keys[i]] != 'function')
console.log(keys[i], window[keys[i]]);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment