Skip to content

Instantly share code, notes, and snippets.

@felquis
Created December 18, 2015 21:31
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 felquis/e48c96c7c4d3a690ea16 to your computer and use it in GitHub Desktop.
Save felquis/e48c96c7c4d3a690ea16 to your computer and use it in GitHub Desktop.
Object.keys
var collection = {
property: 'value',
property2: 'value2'
}
Object.keys(collection).forEach(function (name) {
console.log(name, collection[name])
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment