Skip to content

Instantly share code, notes, and snippets.

@robsongomes
Created January 14, 2016 13:26
Show Gist options
  • Save robsongomes/75184ab27ca12658659a to your computer and use it in GitHub Desktop.
Save robsongomes/75184ab27ca12658659a to your computer and use it in GitHub Desktop.
function loop() {
for(var i = 0; i < 5; i++) {
console.log(i);
}
console.log(i); // imprime 5
}
// i só é visível no escopo de loop()
console.log(i); // undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment