This method returns a random number between 0 (inclusive) and 1 (exclusive)
Grammar
Math.random() ;
Here are the details of the parameters:
Return value:
Example:
<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>
This will produce the following results:
First Test Value : 0.28182050319352636 Second Test Value : 0.6375786089661319 Third Test Value : 0.6780129774072902 Fourth Test Value : 0.7310958163154001