Answers for "how to loop object and get its key value js"

1

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

loop key in object

const fruits = { apple: 28, orange: 17 }

for(key in fruits){
	console.log(key)
}
Posted by: Guest on June-29-2020

Code answers related to "how to loop object and get its key value js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language