RANDOM NUMBER GENERATORS FOR POKER PLAYERS

document.getElementById("demo30").style.color = "blue"; document.getElementById("demo30").style.fontSize = "100px"; function myFunction() { document.getElementById("demo30").innerHTML = Math.floor(Math.random() * 99)+1; setTimeout(myFunction, 30000); } myFunction();

document.getElementById("demo2").style.color = "blue"; document.getElementById("demo2").style.fontSize = "100px"; function myFunction() { document.getElementById("demo2").innerHTML = Math.floor(Math.random() * 99)+1; setTimeout(myFunction, 60000); } myFunction();

document.getElementById("demo3").style.color = "blue"; document.getElementById("demo3").style.fontSize = "100px"; function myFunction() { document.getElementById("demo3").innerHTML = Math.floor(Math.random() * 99)+1; setTimeout(myFunction, 90000); } myFunction();