Descripción
Este método devuelve un número aleatorio entre 0 (inclusive) y 1 (exclusivo).
Sintaxis
Su sintaxis es la siguiente:
Math.random() ;
Valor devuelto
Devuelve un número aleatorio entre 0 (inclusive) y 1 (exclusivo).
Ejemplo
Pruebe el siguiente programa de ejemplo.
<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>
Salida