1、JavaScript中两个数组的拼接
2、使用apply()找出数组中最大值
/* 找出数组中最大/小的数字 */
var numbers = [5, 6, 2, 3, 7];
/*
应用(apply) Math.min/Math.max 内置函数完成
基本等同于 Math.max(numbers[0], ...) 或 Math.max(5, 6, ..)
*/
var max = Math.max.apply(null, numbers);
var min = Math.min.apply(null, numbers);
网友评论