只保留整数部分(丢弃小数部分)
parseInt(5.1234); // 5
向下取整(<= 该数值的最大整数,和parseInt()一样)
Math.floor(5.1234); // 5
向上取整(有小数,整数部分就+1)
Math.ceil(5.1234); // 6
四舍五入(小数部分)
Math.round(5.1234); // 5
Math.round(5.6789); // 6
取绝对值
Math.abs(-1); // 1
返回两数中的较大者
Math.max(1,2); // 2
返回两数中的较小者
Math.min(1,2); // 1
随机数(0-1)
Math.random();
作者:明灭_
链接:https://www.jianshu.com/p/a93bd02d9eb7
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。