第54天 [js] 写一个函数找出给定数组中的最大差值
//[js] 写一个函数找出给定数组中的最大差值 (() =>{ let asd = [1,2,3,4] let mid = Math.max.apply(null,asd) - Math.min.apply(null,asd); console.log(mid); }) ();
补充点知识点,万一哪天就用到了呢,您说不是吗
var
max = Math.max.apply(
null
,arr)
//借用别的对象的方法
//[js] 写一个函数找出给定数组中的最大差值 (() =>{ let asd = [1,2,3,4] let mid = Math.max.apply(null,asd) - Math.min.apply(null,asd); console.log(mid); }) ();
补充点知识点,万一哪天就用到了呢,您说不是吗
var
max = Math.max.apply(
null
,arr)
//借用别的对象的方法