Created
October 17, 2020 16:28
-
-
Save hum-n/08c41a39779595dc4257def85c788112 to your computer and use it in GitHub Desktop.
Keys JavaScript object loop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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