My goal is to display all the titles of these objects in react native.
{
"Languages": [
{
"PKM": "Languages",
"Title": "Tamil2",
},
{
"PKM": "Languages",
"Title": "தமிழ்",
},
{
"PKM": "Languages",
"Title": "English",
}
],
"status": "success",
"message": "Retrieve Success!"
}
The expected result is to display the three titles alone from these objects. I've seen using the js parse method but it displays only the single title not not the three.
use map
on render
update code