Math方法下的取值状态

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        function getRandom(min, max) {
            // Math.floor()表示向下取整,在坐标轴上即一直向左取
            return Math.floor(Math.random() * (max + 1 - min) + min)
            // Math.ceil()表示向上取整,在坐标轴上即一直向右取
            return Math.ceil((Math.random() - 1) * (-(max - min + 1)) + min - 1)
            // 上面两种方法都可以以相同的概率获取min-max之间的整数,但要注意的是
            // Math.ceil()方法会获取到-0,所以最好还是用Math.floor()
        }
        const probability = getRandom(-5, 0)
        console.log(probability);

        // parseInt() 表示取整,在坐标轴上即向0方向靠拢取整
        // Math.round() 表示四舍五入的取整
        // Math.abs() 表示取绝对值
    </script>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值