Answers for "js how to get random int"

5

get random numbers javascript

//Write the following code to get a random number between 0 and n
Math.floor(Math.random() * n);
Posted by: Guest on June-20-2020
3

javascript random integer

const randInt = (min, max) => Math.floor(min + Math.random() * (max - min + 1));
Posted by: Guest on February-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language