function getRandomNumberInRange(min = 0, max = 100) {
return Math.floor(Math.random() * max) + min;
}
function getRandomValueInRange(min = 0, max = 100) {
const range = max - min + 1;
const randomBuffer = new Uint32Array(1);
window.crypto.getRandomValues(randomBuffer);
const randomNumber = randomBuffer[0];
const scaledRandomNumber = Math.floor(
randomNumber / (Math.pow(2, 32) / range)
);
return min + scaledRandomNumber;
}
getRandomNumberInRange(0, 5000)
getRandomValueInRange(0, 5000)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
getRandomNumberInRange | |
getRandomValueInRange |
Test name | Executions per second |
---|---|
getRandomNumberInRange | 1488759.6 Ops/sec |
getRandomValueInRange | 159170.5 Ops/sec |
Let's break down the provided benchmark and explain what's being tested, compared, and considered.
Benchmark Overview
The benchmark compares two JavaScript functions: getRandomNumberInRange
and getRandomValueInRange
. Both functions are designed to generate random numbers within a specified range.
Functions Comparison
Math.floor(Math.random() * max) + min
formula.range = max - min + 1
)window.crypto.getRandomValues(randomBuffer)
Comparison Considerations
The two functions have different design goals and use cases:
getRandomValueInRange
.Pros and Cons
Library and Special JS Feature
The getRandomValueInRange
function uses the Web Cryptography API (window.crypto
) to generate random values. This library is used in conjunction with modern JavaScript engines (like Chrome) to provide a secure source of randomness.
Other Alternatives
If you need alternative implementations, consider the following:
Keep in mind that these alternatives may not offer the same level of precision or security as getRandomValueInRange
, which relies on Web Cryptography API.