Skip to content

Instantly share code, notes, and snippets.

@himeshvats19
Created June 22, 2019 17:57
Show Gist options
  • Save himeshvats19/201b84d967ec976f084aa4ef2db35c85 to your computer and use it in GitHub Desktop.
Save himeshvats19/201b84d967ec976f084aa4ef2db35c85 to your computer and use it in GitHub Desktop.
var message = (function(name) {
return 'Hello ' + name + '!';
})('World');
console.log(message) // => 'Hello World!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment