Skip to content

Instantly share code, notes, and snippets.

@ralucas
Last active January 2, 2016 17:59
Show Gist options
  • Save ralucas/8340539 to your computer and use it in GitHub Desktop.
Save ralucas/8340539 to your computer and use it in GitHub Desktop.
Quick function to show all globals available from the console.
for(var b in window) {
if(window.hasOwnProperty(b)) console.log(b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment