const thenumber = -90
if (Math.abs(thenumber) === 90) { console.log(thenumber) }
if (thenumber === -90 || thenumber === 90) { console.log(thenumber) }
if (thenumber === 90 || thenumber === -90) { console.log(thenumber) }
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Math.abs | |
Two equals, negative first | |
Two equals, positive first |
Test name | Executions per second |
---|---|
Math.abs | 293203.2 Ops/sec |
Two equals, negative first | 279960.8 Ops/sec |
Two equals, positive first | 278194.3 Ops/sec |
This benchmark compares different approaches to checking whether the variable thenumber
, which is set to -90, matches the value of 90 or -90. The three test cases are:
Using Math.abs
:
if (Math.abs(thenumber) === 90) { console.log(thenumber) }
Math.abs
) which may add slight latency compared to direct value checks.Using two equality checks (negative first):
if (thenumber === -90 || thenumber === 90) { console.log(thenumber) }
Math.abs
for simple comparisons.-90
and 90
are hardcoded; it may be unclear to some developers why both checks are present without additional context.Math.abs
.Using two equality checks (positive first):
if (thenumber === 90 || thenumber === -90) { console.log(thenumber) }
lodash
or underscore
can provide utility functions for checks and may include optimizations for specific cases. However, for simple comparisons like this, a direct approach is usually more efficient.In conclusion, while performance metrics are critical, the balance between readability, maintainability, and the specific context of code deployment is essential for making informed decisions in real-world applications.