object.value js code example
Example 1: javascript access property values list of objects
let valuesArray = Object.entries(MyObject);
for (let value of valuesArray) {
document.write(value + "<br>");
}
let person = {
name: "Piet",
age: 42
};
Object.keys(person)
Object.values(person)
Object.entries(person)
Example 2: get all entries in object as array hjs
const object1 = {
a: 'somestring',
b: 42
};
for (let [key, value] of Object.entries(object1)) {
console.log(`${key}: ${value}`);
}
Example 3: Object.Values () javascript
const object1 = {
a:"somestring",
b: 42,
c: false,
d: function test()
};
console.log(Object.values(object1));
const object2 = "test";
console.log(Object.values(object2));