Skip to content

Instantly share code, notes, and snippets.

@hum-n
Created October 17, 2020 16:28
Show Gist options
  • Save hum-n/08c41a39779595dc4257def85c788112 to your computer and use it in GitHub Desktop.
Save hum-n/08c41a39779595dc4257def85c788112 to your computer and use it in GitHub Desktop.
Keys JavaScript object loop.
Object.keys(obj).forEach(key => {
console.log(key);
console.log(obj[key]); // value
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment