I have created an object like this.
myObj = {
"name":"John",
"age":30,
"cars": [
"car1":"Ford",
"car2":"BMW",
"car3":"Fiat"
]
}
I can easily read name and age but I want to read the content (key values) under object "cars". I want to put key values in the drop-down so that if select any key from cars then I will get respective values. Thank you!