I\'m looking for an alternative version for the Object.values() function. As described here the function is not supported in Internet Explorer.
Object.values()
When
For people using UnderscoreJS, you can get object values by using _.values :
_.values
var obj = { foo: 'bar', baz: 42 }; console.log(_.values(obj)); // ['bar', 42]