call和apply求最大和最小值
Posted 土豆zhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了call和apply求最大和最小值相关的知识,希望对你有一定的参考价值。
- ,取最大值
- var arr = [1,3,7,22,677,-1,2,70];
- Math.max.apply(Math, arr);//677
- Math.max.call(Math, 1,3,7,22,677,-1,2,70);//677
- 2,取最小值
- var arr = [1,3,7,22,677,-1,2,70];
- Math.min.apply(Math, arr);//-1
- 可以换成this
-
document.write(Math.max.apply(this, arr));//677
document.write("<br/>")
document.write(Math.max.apply(Math, arr));//677
- Math.min.call(Math, 1,3,7,22,677,-1,2,70);//-1
以上是关于call和apply求最大和最小值的主要内容,如果未能解决你的问题,请参考以下文章