Skip to content

Instantly share code, notes, and snippets.

@dustinc
Created February 1, 2013 01:57
Show Gist options
  • Save dustinc/4688561 to your computer and use it in GitHub Desktop.
Save dustinc/4688561 to your computer and use it in GitHub Desktop.
var arr = [1,2,3,4,5];
for(a in arr) {
console.log(a);
}
// keys
// 0,1,2,3,4
arr.forEach(function(a) {
console.log(a);
});
// values
// 1,2,3,4,5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment