Skip to content

Instantly share code, notes, and snippets.

@dustintheweb
Created August 15, 2014 20:18
Show Gist options
  • Save dustintheweb/67734b6bc8907ddee7e9 to your computer and use it in GitHub Desktop.
Save dustintheweb/67734b6bc8907ddee7e9 to your computer and use it in GitHub Desktop.
Javascript - Show All Global Variables Assigned to a Specific Namespace
for(var g in window) {
if(window.hasOwnProperty(g)) console.log(g);
}
// replace window with custom namespace if needed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment