values_.values(object)
Return all of the values of the object's own properties.
_.values({one: 1, two: 2, three: 3}); => [1, 2, 3]
values_.values(object)
Return all of the values of the object's own properties.
_.values({one: 1, two: 2, three: 3}); => [1, 2, 3]
Please login to continue.