genearate random number js code example
Example: how to write a program that shows a random number between 1 and 100 in your browser
var randomNum ;
randomNum = Math.ceil(Math.random() * 100);
document.write("Random number between 1 and 100: " + randomNum)