Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // What's the result of calling test()?
  2. // What's the load order?
  3. function test() {
  4. console.log(a);
  5. console.log(foo());
  6.  
  7. var a = 1;
  8. function foo() {
  9. return 2;
  10. }
  11. }
  12.  
  13. test();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement