4
Guys, I got a problem. In a javascript file that we use works normally the Object.values() method that takes an object and returns an array. But on the internet explore 9 does not work. Someone could help?
example of code:
var json = '{"6":{"dataInicio":"02\/01\/2017","dataFim":"08\/02\/2017","bonus":"10","idProd":6}}';
var obj = JSON.parse(json);
var array = Object.values(obj);
In ie shows the following error : SCRIPT438: Object does not support property or values method'
Thanks worked on ie 9
– Paulo Rogerio