js for from 0 to 100 code example
Example 1: javascript random number
Math.random() * 10 = 0-10
Example 2: math.floor + roandom
//Write the following code to get a random number between 1 and 10
const result = Math.floor(Math.random()*(10)+ 1);