美文网首页
有关箭头函数的使用方式

有关箭头函数的使用方式

作者: 木羽木羽女口生 | 来源:发表于2020-12-24 01:41 被阅读0次
        const nums = [10,20,111,222,444,40,50]
    
        let funcTotal = nums.filter(function (n) {
            return n < 100
        }).map(function (n) {
          return n * 2
        }).reduce(function (pre,n) {
          return pre + n
        },0)
        console.log('funcTotal ' + funcTotal);
    
        //使用箭头函数
        let arrowTotal = nums.filter(n => n< 100).map( n => n *2 ).reduce((pre,n) => pre + n)
        console.log("arrowTotal " + arrowTotal);
    

    相关文章

      网友评论

          本文标题:有关箭头函数的使用方式

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