random生成[x,y]之间的随机整数
本文最后更新于:2 年前
random生成 [x, y]之间的随机整数
| <script>
function getRandom(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } console.log(getRandom(1, 10)); </script>
|
随机点名
| <script>
function getRandom(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }
const arr = ['许嵩', '邓紫棋', '毛不易', '解忧邵帅']; const index = getRandom(0, arr.length - 1); console.log(arr[index]);
</script>
|