Math.floor是啥?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math.floor是啥?相关的知识,希望对你有一定的参考价值。

参考技术A

1、javascript中Math.floor(x)返回小于等于x的最大整数;

例如:Math.floor(1.6)返回1;

2、用来将一组语句包含起来, 形成一个子生存周期,必须要的;

扩展资料

Math是javascript的对象,Math 对象方法有:

1、Math.abs(x) :返回数的绝对值;

2、Math.acos(x) :返回数的反余弦值;

3、Math.asin(x) :返回数的反正弦值; 

4、Math.ceil(x) :对数进行上舍入;

5、Math.max(x,y) :返回 x 和 y 中的最高值;   

6、Math.min(x,y) :返回 x 和 y 中的最低值。   

以上是关于Math.floor是啥?的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript Math.floor方法(对数值向下取整)

基础-Math.floor与parseInt区别

Math.Floor() 和 Math.Truncate() 之间的区别

JavaScript Math.floor方法(对数值向下取整)

小数的取舍

Math.floor,Math.ceil,Math.rint,Math.round用法