Returns an array containing all the enumerable property values of the object.
None.
obj = {a:1,b:2} vals = obj.getValues() // [1,2]
Last updated 3 months ago