이 메서드는 0(포함)과 1(제외) 사이의 난수를 반환합니다.
문법
Math.random() ;
매개변수의 세부정보는 다음과 같습니다.
반환 값:
예:
<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>
이렇게 하면 다음과 같은 결과가 나타납니다.
First Test Value : 0.28182050319352636 Second Test Value : 0.6375786089661319 Third Test Value : 0.6780129774072902 Fourth Test Value : 0.7310958163154001