Skip to content

Instantly share code, notes, and snippets.

@maggiesavovska
Last active August 29, 2015 14:02
Show Gist options
  • Save maggiesavovska/524467ff5ab10fb0081c to your computer and use it in GitHub Desktop.
Save maggiesavovska/524467ff5ab10fb0081c to your computer and use it in GitHub Desktop.
common useful JS code snippets
for (var property in object) {
if (object.hasOwnProperty(property)) {
// do stuff
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment