Skip to content

Instantly share code, notes, and snippets.

@Nadeeshyama
Last active January 24, 2021 12:39
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 Nadeeshyama/3903723 to your computer and use it in GitHub Desktop.
Save Nadeeshyama/3903723 to your computer and use it in GitHub Desktop.
[Find All Arrays In Page] Find all arrays in page
var global = window; // window for browser environments
for (var prop in global) {
if (Object.prototype.toString.call(global[prop]) === '[object Array]') { // check for array
if (prop !== 'undefined') {
console.log(prop);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment