Skip to content

Instantly share code, notes, and snippets.

@reireynoso
Created March 14, 2021 19:46
Show Gist options
  • Save reireynoso/9a1a231759657745b02e61a317a299c1 to your computer and use it in GitHub Desktop.
Save reireynoso/9a1a231759657745b02e61a317a299c1 to your computer and use it in GitHub Desktop.
Closure example 3
let firstNumber = 200;
function getThatNumber(){
let firstNumber = 500;
function findNum(){
console.log('This is your number: ' + firstNumber)
}
findNum()
}
getThatNumber()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment