I have this json data below:
[{
"name": "Dad",
"age": "32"
}, {
"name": "Mom",
"age": "30"
}, {
"name": "Son",
"age": "3"
}]
I would like to have an array: ["Dad", "Mom", "Son"]
.
What is the correct way to implement this in Javascript?