Skip to content

Instantly share code, notes, and snippets.

@homleen
Created August 11, 2013 09:45
Show Gist options
  • Save homleen/6204197 to your computer and use it in GitHub Desktop.
Save homleen/6204197 to your computer and use it in GitHub Desktop.
vals in for block.
var list = ['test', 'for', 'var', 'in', 'for', 'block'];
for(var i = 0, l = list.length; i < l; i++) {
var forBlockVal = i;
}
console.log(i);
console.log(forBlockVal);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment