這可能是一個相當容易的問題,但我還沒有遇到過優雅的解決方案。Javascript:按特定字段獲取所有對象
如何從單個字段獲取數組中的所有對象。例如;
var users = [{name:'John', age: 20},
{name:'Sarah', age: 21},
{name:'George', age:34}];
var names = magicFunction(users, 'name');
// names = ['John', 'Sarah', 'George'];
// Another challenge is not to get field name (in this case 'name') with the value
我不知道,如果你能與像過濾或地圖功能做到這一點,而無需編寫一個長期的功能?