Skip to content

Instantly share code, notes, and snippets.

@MarcoWorms
Created July 6, 2016 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcoWorms/013117b94af9b94ff4e9baa632be503c to your computer and use it in GitHub Desktop.
Save MarcoWorms/013117b94af9b94ff4e9baa632be503c to your computer and use it in GitHub Desktop.
Closure 2
function pai (carro) {
var comida = 'pizza'
function filho () {
console.log(comida)
function neto () {
console.log(carro)
}
neto()
}
filho()
}
pai('fusca')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment