es6过滤对象的某个属性

使用 Object.entries() 方法将对象转换成一个键值对的数组,然后使用 reduce() 方法遍历这个数组并过滤掉不需要的属性。最后,使用一个空对象作为累加器(acc),将过滤后的属性存储到这个对象中。

  const fields = {
    name: "xxx",
    age: 18,
    other: null
  }
  const filteredFields = Object.entries(fields).reduce((acc, [key, value]) => {
    if (key && value) { acc[key] = value; } return acc;
  }, {});
  console.log(filteredFields)
posted @ 2024-03-27 10:40  bitterteaer  阅读(70)  评论(0编辑  收藏  举报