In react native in the following JSON I need to get an array of string ["abc description", "def description", "ghi description" and so on] for value of DataHolder. There could be n number of dictionary in DataHolder
{
"StatusCode": 200,
"Description": "Description",
"Message": "Success",
"Response": {
"Data": {
"DataHolder": [
{
"abc": "abc description"
},
{
"def": "def description"
},
{
"ghi": "ghi description"
}
]
}
}
}
I am new in react-native any help will be appreciated.