-1
Q:

math.floor + roandom


Math.floor(Math.random() * 100);     // returns a 
  random integer from 0 to 99
 
1
       //Write the following code to get a random number between 1 and 10
       const result = Math.floor(Math.random()*(10)+ 1);
1
//Write the following code to get a random number between 0 and n
Math.floor(Math.random() * n);
2
Math.random() * 10 = 0-10
1
console.log(Math.floor(5.05));
// expected output: 5
1
console.log(Math.floor(5.95));
// expected output: 5

console.log(Math.floor(5.05));
// expected output: 5
1
function getTotal(){
    var total=0;
    for(let t=0; t<array.length; t++){
        total+= array[t].randomNum;
-1

New to Communities?

Join the community