const arr = [
{ type: "a", num: 1 },
{ type: "b", num: 2 },
{ type: "b", num: 3 },
{ type: "c", num: 4 },
];
let sum = 0;
arr.forEach((item) => {
if (item.type === "b") {
sum += item.num;
}
});
对象数组中,找出所有 type 为 “b” 的对象,把这些对象的 num 属性的值加在一起。
于 2024-02-21 19:30:00 首次发布