Skip to content

Instantly share code, notes, and snippets.

@hackjutsu
Last active January 18, 2017 03:00
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 hackjutsu/aff9b9ae062b575a08b71c50486598ac to your computer and use it in GitHub Desktop.
Save hackjutsu/aff9b9ae062b575a08b71c50486598ac to your computer and use it in GitHub Desktop.
Iteration on JS object's own keys.
let arr = ['a', 'b', 'c'];
Object.keys(arr).forEach(key => {
console.log(key)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment