Guest User

Untitled

a guest
Mar 23rd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // function statement
  2.  
  3. function hello(name) {
  4. console.log("Hello " + name);
  5. }
  6.  
  7. hello("Joe");
  8.  
  9. // immediately invoked function expression
  10.  
  11. var helloFunction = function(name) {
  12. console.log("Hello " + name);
  13. }("Tom");
Add Comment
Please, Sign In to add comment