fetch('https://api.covid19india.org/state_district_wise.json')
.then(Response => Response.json())
.then(data => {
for(const prop in data){
console.log(prop)
console.log(prop.statecode) // undefined Why?, How can I access this?
}
})
Need Help, prop.statecode show undefined Why?, How can I access this?