美文网首页
ES5和ES6如何取数组的最大值:

ES5和ES6如何取数组的最大值:

作者: 沐风蝶青缇 | 来源:发表于2019-04-25 03:24 被阅读0次

ES5和ES6如何取数组的最大值:

// ES5 的写法

Math.max.apply(null, [14, 3, 77, 30]);

// ES6 的写法

Math.max(...[14, 3, 77, 30]);

// reduce

[14,3,77,30].reduce((accumulator, currentValue)=>{

    return accumulator = accumulator > currentValue ? accumulator : currentValue

});

相关文章

网友评论

      本文标题:ES5和ES6如何取数组的最大值:

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