Last active
January 24, 2021 12:39
-
-
Save Nadeeshyama/3903723 to your computer and use it in GitHub Desktop.
[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