Skip to content

Instantly share code, notes, and snippets.

@reireynoso
Created March 14, 2021 19:40
Show Gist options
  • Save reireynoso/beae1e59a2a105a04cd9a16dabfa5d00 to your computer and use it in GitHub Desktop.
Save reireynoso/beae1e59a2a105a04cd9a16dabfa5d00 to your computer and use it in GitHub Desktop.
Closure Example 2
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