Skip to content

Instantly share code, notes, and snippets.

@aramis-it
Created November 29, 2018 02:27
Show Gist options
  • Save aramis-it/9de613c9749edacfd69980f8f0eedd4e to your computer and use it in GitHub Desktop.
Save aramis-it/9de613c9749edacfd69980f8f0eedd4e to your computer and use it in GitHub Desktop.
Iterate, loop through object properties
Object.keys(obj).forEach(e => console.log(`key=${e} value=${obj[e]}`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment