05/02/2005, 14:16
|
| | Fecha de Ingreso: junio-2003 Ubicación: Valencia
Mensajes: 334
Antigüedad: 21 años, 6 meses Puntos: 0 | |
Muchas gracias caricatos,
Al final necesitaba poner tres y lo he resuelto con un switch. Siguiendo tu ejemplo, se quedó algo asi:
n= Math.random();
r= Math.floor(n*3);
switch (r)
{
case 0: document.write('0');
break;
case 1: document.write('1');
break;
case 2: document.write('2');
break;
} |