Voici un autre moyen que la fonction "random" pour générer un nombre aléatoire.
function randomize(iUpper, iLoops) { for (var i=0, j=0, x=-1; i<iLoops; i++) { j = (new Date()).getMilliseconds() j = Math.round(j/100); if (j < iUpper) { x = j; } } return x; }
|