object.value in javascript code example
Example 1: object values
const object1 = {
a: 'somestring',
b: 42,
c: false
};
console.log(Object.values(object1));
// expected output: Array ["somestring", 42, false]
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}`);
}
// expected output:
// "a: somestring"
// "b: 42"
// order is not guaranteed
Example 3: Object.Values () javascript
const object1 = {
a:"somestring",
b: 42,
c: false,
d: function test()
};
console.log(Object.values(object1));
// expected output: Array ["somestring", 42, false, function test()]
const object2 = "test";
console.log(Object.values(object2));
// expected output: Array ["t","e","s","t"]
Example 4: javascript object
const object = {
something: "something";
}