Javascript Object values() Method
Last Updated : 17 Mar 2025
The Object.values() returns an array which contains the given object's own enumerable property values, in the same order as that provided by a for...in loop.
Syntax:
Parameter:
obj: It is the object whose enumerable own property values are to be returned.
Return value:
This method returns an array of a given object's own enumerable property value.
Browser Support:
| Chrome | 54 |
| Edge | 14 |
| Firefox | 47 |
| Opera | 41 |
Example 1
Output:
Example 2
Output:
["string", 34, true] ["string", 34, true]
Example 3
Output: