随机数
随机数是系统生成伪随random()来表示,用来随机生成0~1之间随机数
<body>
<script type="text/javascript">
document.write(Math.ceil(12.9))
document.write(Math.floor(12.7))
document.write(Math.round(12.4))
document.write(Math.max(12,34,55,93,87))
document.write(Math.pow(2,3))
document.write(Math.random())
document.write(math.random()*11)
</script>
</body>