const usersData = [
{
"location": {
"country": "Japan",
"city": "Oshu"
},
"id": 0,
"status": "center fielder",
"photoUrl": "https://static01.nyt.com/images/2021/06/30/sports/...",
"fullName": "Shohei Ohtani",
"followed": false
},
{
"id": 1,
"followed": true,
"fullName": "Josh Donaldson",
"status": "Third Baseman",
"location": {
"city": "Pensacola",
"country": "FL"
},
"photoUrl": "https://calltothepen.com/files/2014/05/josh-donald..."
},
{
"photoUrl": "https://www.cp24.com/polopoly_fs/1.6100695.1665161...",
"location": {
"country": "Dominican Republic",
"city": "La Romana"
},
"followed": true,
"status": "first baseman",
"fullName": "Edwin Encarnación",
"id": 2
}
];
let res = usersData.map(item => {
return item.fullName;
});
console.log(res);