const pluck = (objs, property) => objs.map((obj) => obj[property]); // 示例pluck([ { name: 'John', age: 20 }, { name: 'Smith', ...
確定! 回上一頁