Answers for "how to get all values from a javascript object"

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
2

js get all values of object

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

Code answers related to "how to get all values from a javascript object"

Browse Popular Code Answers by Language