Skip to content

Instantly share code, notes, and snippets.

@wkdalsgh192
Created September 4, 2021 12:26
Show Gist options
  • Save wkdalsgh192/cdb260f9ea7b842ba27238b843e011b4 to your computer and use it in GitHub Desktop.
Save wkdalsgh192/cdb260f9ea7b842ba27238b843e011b4 to your computer and use it in GitHub Desktop.
// 1. Assign a function to a variable
const sayHello = function() {
console.log("Hello");
return "Hello, ";
}
// Invoke it using the variable
sayHello();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment