I have JSON data as follows,
var data={'08/06/2020': Array(1), '08/07/2020': Array(1), '08/08/2020': Array(1), '08/09/2020': Array(1), '08/10/2020': Array(1), …}
Trying to loop through the object keys, but getting an undefined error,
data.keys(function(v,i){
// some code
});