Skip to content

Instantly share code, notes, and snippets.

@bkyle
Created April 21, 2009 04:24
Show Gist options
  • Save bkyle/98934 to your computer and use it in GitHub Desktop.
Save bkyle/98934 to your computer and use it in GitHub Desktop.
var array = ['a', 'b'];
for (var i=0; i<array.length; i++) {
print(array[i]);
}
// a
// b
for (var k in array) {
print(array[k]);
}
// a
// b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment