Skip to content

Instantly share code, notes, and snippets.

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