Advertisement
thetenfold

Untitled

Sep 14th, 2013
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var sayHello = foo('Hello world.');
  2.  
  3. // 'foo' will be hoisted to the top
  4. // and the alert will trigger
  5. function foo(str) {
  6.     alert(str);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement