I am trying to loop through some data in a JSON file and count the number of same cities/occurrences...
var json = [ { \"city\": \"California\" }, { \"ci
Nevermind, long day.
I noticed I forgot to access the property city
The Fix: obj[json[i].city]
Thanks!