Created
March 14, 2021 19:30
-
-
Save reireynoso/32096be6eed18c3fb7adc4c9b83340f9 to your computer and use it in GitHub Desktop.
Closure Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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