映射对象的值

使用提供的函数映射对象的值,生成一个具有相同键的新对象。

  • 使用Object.keys()遍历对象的键。
  • 使用Array.prototype.reduce()使用fn创建一个具有相同键和映射值的新对象。
const mapValues = (obj, fn) =>
  Object.keys(obj).reduce((acc, k) => {
    acc[k] = fn(obj[k], k, obj);
    return acc;
  }, {});

const users = {
  fred: { user: 'fred', age: 40 },
  pebbles: { user: 'pebbles', age: 1 }
};
mapValues(users, u => u.age); // { fred: 40, pebbles: 1 }