how to generate a random number between 1 and 6 in javascript

JavaScript
//To genereate a number between 0-1
Math.random();
//To generate a number that is a whole number rounded down
Math.floor(Math.random())
/*To generate a number that is a whole number rounded down between
1 and 10 */
Math.floor(Math.random() * 10) + 1 //the + 1 makes it so its not 0.Math.floor(Math.random() * 6) + 1  Math.floor(Math.random() * 10) + 1function randomNumber(min, max) {
  return Math.floor(Math.random() * (max - min)) + min;
}Math.random();Math.random()
Source

Also in JavaScript: