js中的Math对象

Posted qiqisusu

tags:

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

绝对值Math.abs()

    console.log(Math.abs(-25));
    console.log(Math.abs(‘-25‘));//存在隐式转换可以求绝对值
    console.log(Math.abs(‘wq‘));//结果为NaN  not a number

取整Math.floor()  Math.ceil()

    console.log(Math.floor(1.9)); 向下取整  floor意为地板
    console.log(Math.ceil(1.1)); 向上取整 ceil意为天花板

四舍五入Math.round()

    console.log(Math.round(1.5)); 结果为2
    console.log(Math.round(-1.5));  注意当以 .5 结束时,结果往较大数取,所以此结果为-1

随机数函数Math.random()

    function getRandom(min,max)
        return Math.floor(Math.random()*(max-min+1))+min; //随机整数
    
    console.log(Math.random()); //o到1(包含0)的随机小数
    console.log(getRandom(1,10)); 
 

以上是关于js中的Math对象的主要内容,如果未能解决你的问题,请参考以下文章

math对象的主要方法

js中的Math对象及属性

JS:Math 对象方法

js内置对象

js中的函数,Date对象,Math对象和数组对象

JavaScript基础14——js的Math对象