JavaScript Object.values() MethodThe 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:
Example 1Output: ["Rahul", 0, false] Example 2Output: ["string", 34, true] ["string", 34, true] Example 3Output: [1, 2, 3] Next TopicJavaScript Objects |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India