random number in jquery code example
Example 1: javascript random number between 1 and 10
Math.random();
var theRandomNumber = Math.floor(Math.random() * 10) + 1;
Example 2: generate random numbers in js
Math.floor((Math.random() * 100) + 1);
Example 3: generate random number javascript
function randomNumber(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
Example 4: generate random number jquery
$("h1").html(Math.floor(Math.random() * 10));
Example 5: angular random number between 1 and 10
function randomNumber(min, max) {
return Math.random() * (max - min) + min;
}
Example 6: generate random number jquery
$("h1").html(Math.floor(Math.random() * 10));