Advertisement
dxinh89

View all js built-in fuction

Feb 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. //View all built-in fuction in JS
  2. for(var x in window)
  3. {
  4. if(typeof eval('window.' + x) == 'function')
  5. {
  6. document.write(eval('window.' + x));
  7. document.write('<br>');
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement