random int between two numbers javascript

JavaScript
// Between any two numbers
Math.floor(Math.random() * (max - min + 1)) + min;

// Between 0 and max
Math.floor(Math.random() * (max + 1));

// Between 1 and max
Math.floor(Math.random() * max) + 1;function randomIntFromInterval(min, max) { // min and max included 
  return Math.floor(Math.random() * (max - min + 1) + min);
}Math.floor(Math.random() * 6) + 1  Math.floor(Math.random() * 3);
Source

Also in JavaScript: