码迷,mamicode.com
首页 > 其他好文 > 详细

求对象所有值的和

时间:2020-07-23 16:31:20      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:ret   reduce   log   console   ons   rop   res   obj   object   

    var obj = {
      EuropeKing: 1,
      bigHurt: "",
      bigLucky: "2",
      nonChieftain: "",
      smallHurt: "",
      smallLucky: "",
    }
    var res = Object.values(obj).reduce((pre, cur) => {
      return +pre + +cur
    })
    console.log(res) // 3

求对象所有值的和

标签:ret   reduce   log   console   ons   rop   res   obj   object   

原文地址:https://www.cnblogs.com/antyhouse/p/13365481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!