Skip to content

Instantly share code, notes, and snippets.

@gilbertoquinteroA
Created July 20, 2018 03:32
Show Gist options
  • Save gilbertoquinteroA/80a54fdb28dcbbf976aa30e303944007 to your computer and use it in GitHub Desktop.
Save gilbertoquinteroA/80a54fdb28dcbbf976aa30e303944007 to your computer and use it in GitHub Desktop.
/*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