Skip to content

Instantly share code, notes, and snippets.

@abhidatta0
Created August 25, 2019 12:36
Show Gist options
  • Select an option

  • Save abhidatta0/8eab0dc7cd98cf87b031fd7f77a11f8c to your computer and use it in GitHub Desktop.

Select an option

Save abhidatta0/8eab0dc7cd98cf87b031fd7f77a11f8c to your computer and use it in GitHub Desktop.
var greeting=function(name){
return 'Hello '+name;
}('John');
console.log(greeting);
var firstname="John";
(function(name){
var greeting="Hello";
console.log(greeting+" "+name);
}(firstname));
//IIFE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment