call和apply求最大和最小值

  1. ,取最大值
  2. var arr = [1,3,7,22,677,-1,2,70];
  3. Math.max.apply(Math, arr);//677
  4. Math.max.call(Math, 1,3,7,22,677,-1,2,70);//677
  5. 2,取最小值
  6. var arr = [1,3,7,22,677,-1,2,70];
  7. Math.min.apply(Math, arr);//-1
   
    1. 可以换成this
    2. document.write(Math.max.apply(this, arr));//677 
      document.write("<br/>")
      document.write(Math.max.apply(Math, arr));//677

  1. Math.min.call(Math, 1,3,7,22,677,-1,2,70);//-1

call和apply改变函数this内部指向

上一篇:计算日期时间 自动加1天 PHP计算闰年 java与PHP时间戳对比区别


下一篇:CodeForces 508C Anya and Ghosts