Wednesday, 11 September 2013

JSON: which pathway to access the key value?

JSON: which pathway to access the key value?

Given a json such :
var WNES_list = {
"India":{ "W": 67.0, "N":37.5, "E": 99.0, "S": 5.0, "vert_%": 106 },
};
I know how to access values :
var myValue = WNES_list.India.W;
How to access to a key such W, or India ?

No comments:

Post a Comment