{
"2": [{
"name": "Jeevan",
"age": "7"
},
{
"name": "Jeet",
"age": "8"
}],
"school": "Kendriya Vidyalaya"
}
I am having this JSON stored in variable named Obj. I would like to access individual JSON Objects inside of JSON Array which has a a key as "2". Please help me to access the same.
As far as conventional way is considered i.e Obj.key, it is not applicable here because Obj.2 or Obj."2" is not allowed.