Skip to content
Oaker的知识库
Search
K
Main Navigation
主页
Blog
JavaScript
Web
框架
Node
工具
算法
题解
外观
Menu
返回顶部
页面导航
Table of Contents for current page
获取取数组的最大值(ES5、ES6)
max
js
const
arr
=
[
1
,
2
,
3
,
4
,
5
];
const
max
=
Math.
max
(
...
arr);
console.
log
(max);
// 输出 5
for
reduce + max