Answers for "see all functions in a website with console"

0

see all functions in a website with console

for(var b in window) { 
  if(window.hasOwnProperty(b)) console.log(b); 
}
Posted by: Guest on November-11-2020

Code answers related to "see all functions in a website with console"

Code answers related to "Javascript"

Browse Popular Code Answers by Language