Created
July 20, 2018 03:32
-
-
Save gilbertoquinteroA/80a54fdb28dcbbf976aa30e303944007 to your computer and use it in GitHub Desktop.
This file contains 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
/*funciona porque es una variable global*/ | |
if (true) { | |
var x = 5; | |
} | |
console.log(x); // x is 5 | |
/*no funciona porque su vida o mejor dicho limite esta en el if solamente por eso te da el error de no definida*/ | |
if (true) { | |
let y = 5; | |
} | |
console.log(y); // ReferenceError: y is not defined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment