Answers for "javascript random nuber"

15

generate random number javascript

function randomNumber(min, max) {
  return Math.floor(Math.random() * (max - min)) + min;
}
Posted by: Guest on April-10-2020
1

random int javascript

//Returns random Int between 0 and 2 (included)
Math.floor(Math.random()*3)
Posted by: Guest on July-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language