Skip to content

Instantly share code, notes, and snippets.

@lightyrs
Created May 27, 2011 14:56
Show Gist options
  • Save lightyrs/995414 to your computer and use it in GitHub Desktop.
Save lightyrs/995414 to your computer and use it in GitHub Desktop.
Log All Available Vars And Functions
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