Returns an array of the values of an object.
The object to extract values from.
An array of the object's values.
const obj = { a: 1, b: 2, c: 3 };console.log(values(obj)); // [1, 2, 3] Copy
const obj = { a: 1, b: 2, c: 3 };console.log(values(obj)); // [1, 2, 3]
1.1.0
Returns an array of the values of an object.