JavaScript - Metodo matematico casuale
Descrizione
Questo metodo restituisce un numero casuale compreso tra 0 (incluso) e 1 (esclusivo).
Sintassi
La sua sintassi è la seguente:
Math.random() ;
Valore di ritorno
Restituisce un numero casuale compreso tra 0 (incluso) e 1 (esclusivo).
Esempio
Prova il seguente programma di esempio.
<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>