收藏
回答

嵌套数组如何求和?

请问该如何求player下scores里的grade的总和

回答关注问题邀请回答
收藏

1 个回答

  • 神经蛙
    神经蛙
    2022-09-21
    const total = list.reduce((prevTotal, item) => {
      const innerTotal = item.scores.reduce((pre, score) => pre + score.grade, 0);
      return prevTotal + innerTotal;
    }, 0);
    
    console.log(total);
    
    2022-09-21
    有用
    回复
登录 后发表内容
问题标签