[Find All Arrays In Page] Find all arrays in page
This file contains 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
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