Skip to content

Instantly share code, notes, and snippets.

@himeshvats19
Created June 22, 2019 18:16
Show Gist options
  • Save himeshvats19/e01b8f1ad39729cc7c3e0673c60c3528 to your computer and use it in GitHub Desktop.
Save himeshvats19/e01b8f1ad39729cc7c3e0673c60c3528 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