js map

作者: 追逐繁星的阿忠 | 来源:发表于2021-07-08 16:24 被阅读0次

js map 2021-07-08

let obj = {}

arr.forEach((item) => { 
  if(obj[item. difficultyName]) {
    obj[item. difficultyName] += item. number
  } else {
    obj[item. difficultyName] = item.number 
  } 
})
Object.entrice(obj).map(([key,value]) => ({key:value}))

相关文章

网友评论

      本文标题:js map

      本文链接:https://www.haomeiwen.com/subject/dcjtpltx.html