我使用循环遍历算出来了,但是感觉代码太多,不知道es6 有没有更好的计算方式var array = [ ["18.8000", "10.0000"] ["20.0000", "10.0000"] ["20.1000", "10.0000"] ["20.2000", "1370"] ["20.6000", "2120"] ["20.9000", "1480"]]let total = 0; for (let index = 0; index < array .length; index++) { const element = +array[index][1]; total += element; } console.log(total);
添加回答
举报
0/150
提交
取消