Created
March 14, 2021 19:40
-
-
Save reireynoso/beae1e59a2a105a04cd9a16dabfa5d00 to your computer and use it in GitHub Desktop.
Closure Example 2
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
let name = "Bob"; | |
function hello(){ | |
let greeting = "Heya"; | |
function displayGreeting(){ | |
console.log(greeting + ' ' + name) | |
} | |
displayGreeting(); | |
} | |
hello() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment