Answers for "javascript foreach array object get value by key"

1

javascript foreach array of object get value by key

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

for (const [key, value] of Object.entries(object1)) {
  console.log(`${key}: ${value}`);
}
Posted by: Guest on June-18-2021
1

javascript foreach object keys

var lunch = {
	sandwich: 'ham',
	snack: 'chips',
	drink: 'soda',
	desert: 'cookie',
	guests: 3,
	alcohol: false,
};

Object.keys(lunch).forEach(function (item) {
	console.log(item); // key
	console.log(lunch[item]); // value
});

// returns "sandwich", "ham", "snack", "chips", "drink", "soda", "desert", "cookie", "guests", 3, "alcohol", false
Posted by: Guest on June-01-2020

Code answers related to "javascript foreach array object get value by key"

Code answers related to "Javascript"

Browse Popular Code Answers by Language