Answers for "access object value by key javascript in for loop"

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
10

javascript iterate over object keys and values

const object1 = {
  a: 'somestring',
  b: 42
};

for (let [key, value] of Object.entries(object1)) {
  console.log(`${key}: ${value}`);
}

// expected output:
// "a: somestring"
// "b: 42"
// order is not guaranteed
Posted by: Guest on April-23-2020

Code answers related to "access object value by key javascript in for loop"

Code answers related to "Javascript"

Browse Popular Code Answers by Language