var mathFloor = Math.floor;
var random = Math.random;
var unsafeFloor = n => n | 0;
var fastFloor = n => {
if (n >= 0 && n < 0x80000000) {
return n | 0;
}
if (n > -0x80000000 && n < 0) {
return (n - 1) | 0;
}
return mathFloor(n);
};
mathFloor(random()*10);
fastFloor(random()*10);
unsafeFloor(random()*10);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
floor | |
fast floor | |
unsafe floor |
Test name | Executions per second |
---|---|
floor | 1012067264.0 Ops/sec |
fast floor | 354553920.0 Ops/sec |
unsafe floor | 965839296.0 Ops/sec |
Let's dive into the explanation of the provided benchmark.
Benchmark Overview
The benchmark measures the performance of three different approaches to implementing the floor
function in JavaScript:
mathFloor
: The built-in Math.floor
function from the JavaScript Math library.fastFloor
: A custom implementation that takes advantage of bitwise operations to perform floor calculations more efficiently for certain ranges of input values.unsafeFloor
: Another custom implementation that uses a simple bitwise operation (n | 0
) to truncate the decimal part of the number.Options Compared
The benchmark compares these three options for the following inputs:
Math.random()
.Pros and Cons
mathFloor
for those cases.Library and Syntax
The benchmark uses the JavaScript Math library, which is a built-in library that provides various mathematical functions, including Math.floor
.
No special JS features or syntax are used in this benchmark.
Other Considerations
When implementing performance-critical code like this, it's essential to consider factors such as:
In this case, the fastFloor
implementation takes advantage of bitwise operations, which can be faster for certain ranges of input values. However, its performance may degrade for other input ranges or when dealing with edge cases.
Alternatives
If you're interested in exploring alternative approaches, here are a few options:
numjs
or mathjs
, which provide optimized implementations of various mathematical functions.Keep in mind that these alternatives may require additional expertise and resources.