Skip to content

Instantly share code, notes, and snippets.

@mihaip
Created March 20, 2013 22:52
Show Gist options
  • Save mihaip/5209291 to your computer and use it in GitHub Desktop.
Save mihaip/5209291 to your computer and use it in GitHub Desktop.
JS Scoping
for (var i = 0; i < ..; i++) {
var thing;
for (var j = 0; j < ...; j++) {
if (...) {
thing = ...;
break;
}
}
if (thing) {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment