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

Math.min() Math.max() Math.min().apply() Math.max() .apply()该如何使用???

时间:2019-08-22 18:51:41      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:使用   计算   最大值   style   min   this   strong   算数   function   

Math.min()和 Math.max() 

语法:

Math.min(x,y)
Math.max(x,y)

虽然能取到最小值和最大值,但是不支持数组。

 

那么如何计算数组中的大小值呢?????????????????????

Math.min().apply()  和   Math.max() .apply()

语法:

Math.min.apply(obj,args);

Math.max.apply(obj,args);

第一个参数obj对象将代替Function类里this对象,第二个参数是数组

可以书写为

Math.max.apply(this,args);

Math.max.apply(null,args);

Math.min() Math.max() Math.min().apply() Math.max() .apply()该如何使用???

标签:使用   计算   最大值   style   min   this   strong   算数   function   

原文地址:https://www.cnblogs.com/snowbxb/p/11396020.html

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