Answers for "hwo to get all object values in nodejs"

CSS
2

how to get all values from object in javascript

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

console.log(Object.values(object1));
// expected output: Array ["somestring", 42, false]

> Array ["somestring", 42, false]

Object.values(obj)
Posted by: Guest on February-20-2021
2

js get all values of object

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

Code answers related to "hwo to get all object values in nodejs"

Browse Popular Code Answers by Language