Advertisement
thetenfold

Untitled

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