Skip to content

Instantly share code, notes, and snippets.

@neolao
Created August 19, 2016 10:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neolao/2ce2b9975307e59d972a3d7b1ba32813 to your computer and use it in GitHub Desktop.
Save neolao/2ce2b9975307e59d972a3d7b1ba32813 to your computer and use it in GitHub Desktop.
variables = [];
for (variable in window) {
if (typeof window[variable] === 'function') {
continue;
}
variables.push([variable, window[variable]]);
}
console.table(variables);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment