第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

數(shù)組中對(duì)象的總和值

數(shù)組中對(duì)象的總和值

絕地?zé)o雙 2023-03-10 13:34:09
試圖從數(shù)組中的對(duì)象中求和我的值我有 3 個(gè)對(duì)象,在每個(gè)對(duì)象中都有兩個(gè)字段,我在其中聲明了值:let items = [       {        id: 1,         label: 'test',         itemname: 'testitem',         pieces: 4,        weight: 0.02      },      {        id: 2,         label: 'test',         itemname: 'testitem',         pieces: 4,        weight: 0.02      },      {        id: 2,         label: 'test',         itemname: 'testitem',         pieces: 4,        weight: 0.02      }    ];因此,如果我是正確的,則重量總和將為 0.06,而碎片總和將為 12,兩者相乘將為 0.72,這意味著我想將重量總和與碎片總和相乘。我看到這樣的例子:const weight = items.reduce((prev, cur) => {  return prev + (cur.weight * cur.pieces);}, 0);console.log(weight);在這個(gè)例子中,總和僅為 0.24。有人可以幫我嗎編輯:@Robby Cornelissen 的評(píng)論是正確的。我的想法是錯(cuò)誤的。
查看完整描述

2 回答

?
拉丁的傳說

TA貢獻(xiàn)1789條經(jīng)驗(yàn) 獲得超8個(gè)贊

如果您想要所有項(xiàng)目的總(總和)重量,您必須先獲得每個(gè)項(xiàng)目的重量,然后將它們加在一起。


const sum = (arr) => {

    return arr.map(item => item.pieces * item.weight).reduce((current, total) => current + total)

}

let items = [{

    id: 1,

    label: 'test',

    itemname: 'testitem',

    pieces: 4,

    weight: 0.02

  },

  {

    id: 2,

    label: 'test',

    itemname: 'testitem',

    pieces: 4,

    weight: 0.02

  },

  {

    id: 2,

    label: 'test',

    itemname: 'testitem',

    pieces: 4,

    weight: 0.02

  }

]


const sum = (arr) => {

  return arr.map(item => item.pieces * item.weight).reduce((current, total) => current + total)

}


const totalWeight = sum(items)


console.log(totalWeight)


查看完整回答
反對(duì) 回復(fù) 2023-03-10
?
炎炎設(shè)計(jì)

TA貢獻(xiàn)1808條經(jīng)驗(yàn) 獲得超4個(gè)贊

您可以使用forEach循環(huán)遍歷數(shù)組,將pieces和weight值相加:


let pieces = 0; // sum of pieces

let weight = 0; // sum of weight

items.forEach(function(elmt){

    pieces += elmt.pieces;

    weight += elmt.weight;

});

然后乘以pieces* weight:


let total = pieces * weight;

console.log(total);


查看完整回答
反對(duì) 回復(fù) 2023-03-10
  • 2 回答
  • 0 關(guān)注
  • 215 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)