Skip to main content
Stack Overflow
  1. About
  2. For Teams

Return to Revisions

6 of 7
Commonmark migration

Math.random()

Returns an integer random number between min (included) and max (included):

function randomInteger(min, max) {
 return Math.floor(Math.random() * (max - min + 1)) + min;
}

Or any random number between min (included) and max (not included):

function randomNumber(min, max) {
 return Math.random() * (max - min) + min;
}

Useful examples (integers):

// 0 -> 10
Math.floor(Math.random() * 11);
// 1 -> 10
Math.floor(Math.random() * 10) + 1;
// 5 -> 20
Math.floor(Math.random() * 16) + 5;
// -10 -> (-2)
Math.floor(Math.random() * 9) - 10;

** And always nice to be reminded (Mozilla):

Math.random() does not provide cryptographically secure random numbers. Do not use them for anything related to security. Use the Web Crypto API instead, and more precisely the window.crypto.getRandomValues() method.

Lior Elrom
  • 21.1k
  • 16
  • 83
  • 94

AltStyle によって変換されたページ (->オリジナル) /