Something like this, maybe?
for( var x in window) { if( window[x] instanceof Function) console.log(x); }
All built-in functions in the console are listed here (excluding one of the built-in objects, for example Math.sin()
).
Niet the dark absol
source share