美文网首页
js Math 对象方法

js Math 对象方法

作者: 醉青风 | 来源:发表于2021-08-17 09:38 被阅读0次

    Math 对象方法
    基本方法

    Math.round();向上四舍五入。

    Math.ceil();向上取整,有小数就整数部分加1

    Math.floor(5/2) ;向下取整

    Math.abs();返回绝对值;

    Math.max();返回两个以上参数的最大值;

    Math.min();返回两个以上参数的最小值;

    Math.random(); 返回 0 ~ 1 之间的随机数

    相关文章

      网友评论

          本文标题:js Math 对象方法

          本文链接:https://www.haomeiwen.com/subject/ckpbbltx.html