Love beautiful code? We do too.
Phương thức Math random trong JavaScript trả về một số ngẫu nhiên giữa hai số 0 và 1.
Cú pháp
Math.random() ;
Trả về giá trị
Trả về một số ngẫu nhiên giữa hai số 0 và 1.
Ví dụ
<html>
<head>
<title>JavaScript Math random() Method</title>
</head>
<body>
<script type="text/javascript">
var value = Math.random( );
document.write("First Test Value : " + value );
var value = Math.random( );
document.write("<br />Second Test Value : " + value );
var value = Math.random( );
document.write("<br />Third Test Value : " + value );
var value = Math.random( );
document.write("<br />Fourth Test Value : " + value );
</script>
</body>
</html>
Ví dụ
First Test Value : 0.14213853440860325
Second Test Value : 0.731882502361515
Third Test Value : 0.08129019101163637
Fourth Test Value : 0.940832301643217
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời