Q:

generate number using math random in javascript

// Between any two numbers
Math.floor(Math.random() * (max - min + 1)) + min;

// Between 0 and max
Math.floor(Math.random() * (max + 1));

// Between 1 and max
Math.floor(Math.random() * max) + 1;
12
console.log(Math.round(Math.random() * 10))
0
function getTotal(){
    var total=0;
    for(let t=0; t<array.length; t++){
        total+= array[t].randomNum;
-1

New to Communities?

Join the community