/** * 提取若干数组中指定字段组合成一个新数组 */ function extractProps(arr, prop) { return arr.map((item) => item[prop]); }
作者:人参,每篇随笔皆原创(除非注明原作者的随笔),欢迎指正!