<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<!-- 求一个数组中的最大值 -->
<script>
var arr = [1, 2, 3, 4, 5];
// apply一开始的方法是用来调用函数的上下文
// 这里用apply,里面需要2个参数
var maxnum = Math.max.apply(null, arr);
console.log(maxnum);
</script>
</body>
</html>