js list all variables in google chrome console

JavaScript
[Edit]
+
0
-
0

js list all variables in Google Chrome console

1 2 3 4 5 6 7
for (const variable in window) { if (window.hasOwnProperty(variable)) { console.log(variable); } } // Note: the source code will list all functions and variables available on the window object.