Answers for "get key of a object in a for loop js"

2

how to get value and key in a for of loop in js

const test = {a: 1, b: 2, c: 3};

for (const [key, value] of Object.entries(test)) {
  console.log(key, value);
}
Posted by: Guest on August-02-2020
1

js loop through object keys

for (const value of Object.values(obj)) { }
Posted by: Guest on October-26-2021

Code answers related to "get key of a object in a for loop js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language