Creates an array of the own enumerable string keyed property values of object.
object
Note: Non-object values are coerced to objects.
The object to query.
Returns the array of property values.
5.17.0
[[keys]], [[valuesIn]]
function Foo() { this.a = 1 this.b = 2}Foo.prototype.c = 3values(new Foo)// => [1, 2] (iteration order is not guaranteed)values('hi')// => ['h', 'i'] Copy
function Foo() { this.a = 1 this.b = 2}Foo.prototype.c = 3values(new Foo)// => [1, 2] (iteration order is not guaranteed)values('hi')// => ['h', 'i']
Creates an array of the own enumerable string keyed property values of
object
.Note: Non-object values are coerced to objects.