Skip to content

Instantly share code, notes, and snippets.

@iksi
Created January 5, 2015 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iksi/44a274d97de5a739da70 to your computer and use it in GitHub Desktop.
Save iksi/44a274d97de5a739da70 to your computer and use it in GitHub Desktop.
// using a for loop on an object
for (key in object) {
if (object.hasOwnProperty(key)) {
object[key];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment