Created
November 21, 2017 22:33
-
-
Save oscaroceguera/af07d3ea36376f1aed839d576a77e76c to your computer and use it in GitHub Desktop.
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
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