I am learning javascript. I have an array that looks like :
myArray = [{
"item":{
"fields":{
"myfield":"Value1"
}
}
},
{
"item":{
"fields":{
"myfield":"Value2"
}
}
}];
I want to create a new array with ["Value1","Value2"].
How should I do that ?
Thanks a lot !