Math.random() 返回介于 0(包括)与 1(不包括)之间的随机整数
- <!DOCTYPE html>
- <html>
- <body>
- <h2>JavaScript Math.random()</h2>
- <p>Math.random() 返回 0(包含)和 1(不包括)之间的随机数:</p>
- <p id="demo"></p>
- <script>
- document.getElementById("demo").innerHTML = Math.random();
- </script>
- </body>
- </html>