77、随机数函数

yu
yu
2024-10-04 / 0 评论 / 4 阅读 / 正在检测是否收录...
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        // 左闭右开 能取到0但取不到1 中间的随机一个小数
        // console.log(Math.random())

        // 0~10 之间的整数
        // console.log(Math.floor(Math.random() * 11))
        // let arr = ['red', 'green', 'blue']
        // let random = Math.floor(Math.random() * arr.length) //3
        // console.log(random)
        // console.log(arr[random])
        // 取到 N ~ M 的随机函数
        function getRandom(N, M){
          return Math.floor(Math.random() * (M - N + 1)) + N
        }
        console.log(getRandom(4, 8))
    </script>
</body>
</html>
0

评论 (0)

取消