Answers for "js values"

CSS
11

object values

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

console.log(Object.values(object1));

// expected output: Array ["somestring", 42, false]
Posted by: Guest on June-19-2020
5

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
Posted by: Guest on April-23-2020
2

js get all values of object

Object.values(object1)
Posted by: Guest on February-21-2020
0

values javascript

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

console.log(Object.values(object1));
Posted by: Guest on April-28-2021

Browse Popular Code Answers by Language