Skip to content

Instantly share code, notes, and snippets.

@oscaroceguera
Created November 21, 2017 22:33
Show Gist options
  • Save oscaroceguera/af07d3ea36376f1aed839d576a77e76c to your computer and use it in GitHub Desktop.
Save oscaroceguera/af07d3ea36376f1aed839d576a77e76c to your computer and use it in GitHub Desktop.
function grandFather () {
var name = 'Oscar'
// like no es accesible aqui
fucntion parent () {
// name es accesible desde aqui
// like no es accesible desde aqui
function child () {
// nivel mas profundo del scope
// name tambien es accesible desde aqui
var likes = 'React'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment