The objValues() returns an array whose elements are values of enumerable string-keyed properties found
directly upon object. This is the same as iterating with a for...in loop, except that a for...in loop
enumerates properties in the prototype chain as well. The order of the array returned by objValues()
is the same as that provided by a for...in loop.
If you need the property keys, use objKeys() instead. If you need both the property keys and values, use objEntries() instead.
The objValues() returns an array whose elements are values of enumerable string-keyed properties found directly upon object. This is the same as iterating with a for...in loop, except that a for...in loop enumerates properties in the prototype chain as well. The order of the array returned by objValues() is the same as that provided by a for...in loop.
If you need the property keys, use objKeys() instead. If you need both the property keys and values, use objEntries() instead.