I have a array like this:
Array[2]
0: Array[1] 0: Object
color: "d64b23"
hasta_sayisi: 84412
il: "TOKAT"
__proto__: Object
length: 1
__proto__: Array[0]
1: Array[1]
0: Object
color: "499a84"
hasta_sayisi: 123068
il: "SİVAS"
__proto__: Object
length: 1
__proto__: Array[0]
I want to get objects from this array.So output should like this:
{
color: "d64b23",
hasta_sayisi: 84412,
il: "TOKAT"
},
{
color: "499a84",
hasta_sayisi: 123068,
il: "SİVAS"
}
How can we achive this with Javascript?
Thanks