window.array = [Array(1000)].map((x, idx) => idx)
const rnd = window.array[Math.floor(Math.random() * window.array.length)]
const rnd = window.array[~~(Math.random() * window.array.length)]
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
floor | |
bitwise-not |
Test name | Executions per second |
---|---|
floor | 1538021.8 Ops/sec |
bitwise-not | 1958918.4 Ops/sec |
Let's dive into the explanation of the provided benchmark.
Benchmark Overview
The benchmark measures the performance difference between using the Math.floor()
function and the bitwise NOT operator (~
) to select an element from an array. The script generates an array of 1000 elements, each representing a random index.
Script Preparation Code
The "Script Preparation Code" section is crucial in setting up the benchmark:
window.array = [...Array(1000)].map((x, idx) => idx);
This code creates a window object array
with an array of 1000 elements, where each element is a random index between 0 and 999. This array will be used to select the random element for testing.
Html Preparation Code
The "Html Preparation Code" section is empty, which means no HTML preparation is required for this benchmark.
Test Cases
There are two test cases:
floor
: uses Math.floor()
const rnd = window.array[Math.floor(Math.random() * window.array.length)];
bitwise-not
: uses the bitwise NOT operator (~
) to select an element:const rnd = window.array[~~(Math.random() * window.array.length)];
Pros and Cons
Using Math.floor()
:
Math.floor()
function.Using bitwise NOT (~
):
Library
There is no explicit library mentioned in the benchmark. However, the window.array
variable is created using the spread operator (...
) and an array comprehension, which are built-in JavaScript features.
Special JS Feature/Syntax
The bitwise NOT operator (~
) is a special feature in JavaScript that performs a bitwise negation on its operand. It's not as commonly used as other operators, but it can be useful in certain situations.
Other Alternatives
If you need to select an element from an array without using Math.floor()
or the bitwise NOT operator, you could use other approaches:
at
method (ES2019+): const rnd = window.array.at(Math.random() * window.array.length);
let index = Math.floor(Math.random() * window.array.length); const rnd = window.array[index];
Keep in mind that these alternatives may have different performance characteristics or readability trade-offs compared to the original benchmark.