I have a array like this-
[
{
title: "The Soundbox"
descrption: "this is description"
rating: "5"
},
{
title: "The Soundbox2"
descrption: "this is description"
rating: "5"
},
{
title: "The Soundbox3"
descrption: "this is description"
rating: "5"
}
]
Now to have to write one funcion for getting this-
["The Soundbox", "The Soundbox2", "The Soundbox3"] // Here you can see the title only
Please help me to getting this.