random nmmber between 1 and 14 javascript code example
Example 1: angular random number between 1 and 10
function randomInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
Example 2: javascript random number
Math.random() * 10 = 0-10