Skip to content

Instantly share code, notes, and snippets.

@bertrandmartel
Created May 26, 2015 00:42
Show Gist options
  • Save bertrandmartel/aa51b4cf8ad5b11c2e5a to your computer and use it in GitHub Desktop.
Save bertrandmartel/aa51b4cf8ad5b11c2e5a to your computer and use it in GitHub Desktop.
list objects in windows
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