Created
May 26, 2015 00:42
-
-
Save bertrandmartel/aa51b4cf8ad5b11c2e5a to your computer and use it in GitHub Desktop.
list objects in windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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