Skip to content

Instantly share code, notes, and snippets.

@Neoglyph
Last active July 3, 2017 13:11
Show Gist options
  • Save Neoglyph/86ca03c391459bcc55f133bcfeb39bca to your computer and use it in GitHub Desktop.
Save Neoglyph/86ca03c391459bcc55f133bcfeb39bca to your computer and use it in GitHub Desktop.
Loop through object properties
for (let property in object) {
if (object.hasOwnProperty(property)) {
// do stuff
}
}
@justin789
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment