如何返回介于 0 与 9 之间(都包括)的随机整数
- <!DOCTYPE html>
- <html>
- <body>
- <h2>JavaScript Math</h2>
- <p>Math.floor(Math.random() * 10) 返回 0 与 9 之间的随机整数(均包含):</p>
- <p id="demo"></p>
- <script>
- document.getElementById("demo").innerHTML =
- Math.floor(Math.random() * 10);
- </script>
- </body>
- </html>