Skip to content

Instantly share code, notes, and snippets.

@JasonDeving
Created March 15, 2016 05:47
Show Gist options
  • Save JasonDeving/ff95660dad1ae80402e6 to your computer and use it in GitHub Desktop.
Save JasonDeving/ff95660dad1ae80402e6 to your computer and use it in GitHub Desktop.
iterating arrays once more
var box = []
box['size'] = 9; // doesn't return size because it's a string and not integer
box['0'] = 'meow';
box.push("Whoohoo");
for(var i =0; i < 2; i++) {
console.log(box[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment