The object whose values will be extracted.
An array of the values of the object.
This function is a part of Object Utilities.
V - The type of values in the object.
const obj = { a: 1, b: 2, c: 3 };
objValuesArray(obj);
//=> [1, 2, 3]
Generated using TypeDoc
Returns an array containing the values of the given object.