码迷,mamicode.com
首页 > 移动开发 > 详细

call和apply求最大和最小值

时间:2017-01-05 09:05:08      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:pop   data-   app   comment   code   max   start   com   class   

  1. ,取最大值  
  2.   
  3. var arr = [1,3,7,22,677,-1,2,70];  
  4.   
  5. Math.max.apply(Math, arr);//677  
  6. Math.max.call(Math, 1,3,7,22,677,-1,2,70);//677  
  7.   
  8.   
  9. 2,取最小值  
  10.   
  11. var arr = [1,3,7,22,677,-1,2,70];  
  12. 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求最大和最小值

标签:pop   data-   app   comment   code   max   start   com   class   

原文地址:http://www.cnblogs.com/zhangzs000/p/6251057.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!