Skip to content

Instantly share code, notes, and snippets.

@reireynoso
Created March 14, 2021 19:30
Show Gist options
  • Save reireynoso/32096be6eed18c3fb7adc4c9b83340f9 to your computer and use it in GitHub Desktop.
Save reireynoso/32096be6eed18c3fb7adc4c9b83340f9 to your computer and use it in GitHub Desktop.
Closure Example
function greet(whattosay){
return function (name){
console.log(whattosay + ' ' + name)
}
}
const sayHi = greet("Hello")
sayHi('Person')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment