<!--your preparation HTML code goes here-->
const o = { f1(a,b){a**b}, f2: (a,b) => {return a**b}, f3: undefined}
o.f1(123,345)
o.f2(123,345)
o.f3?.(123,345)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
f1 | |
f2 | |
f3 |
Test name | Executions per second |
---|---|
f1 | 250836128.0 Ops/sec |
f2 | 227694608.0 Ops/sec |
f3 | 244662144.0 Ops/sec |
In this benchmark, three approaches to defining and invoking functions in JavaScript are compared based on their performance when calculating the power of a number (using the exponentiation operator **
). Each test utilizes a different method to define and invoke a function:
Function Declaration (Method): o.f1(123, 345)
f1(a, b) { a ** b }
Arrow Function: o.f2(123, 345)
f2: (a, b) => { return a ** b }
this
context.Optional Chaining with Undefined: o.f3?.(123, 345)
f3: undefined
(no actual function).?.
) allows the test to safely attempt to invoke f3
without throwing an error even though f3
is explicitly set to undefined
.Executions Per Second:
Function Declaration (f1
):
this
binding.Arrow Function (f2
):
this
, which can be beneficial in certain contexts (like callbacks in methods).Optional Chaining (f3
):
TypeError
when attempting to call methods on undefined
or null
.f3
is undefined
, it offers no performance benefits and serves as a redundancy in this benchmark context.**
operator is straightforward, the distinctions in how functions are defined and executed can lead to performance variations depending on the JavaScript engine optimizations.Math.pow
) for some calculations, which can also be benchmarked to see how they perform in comparison to custom implementations.This benchmark provides valuable insights into function invocation performance in JavaScript, revealing that traditional functions may still have an edge in execution speed compared to newer syntax, though the practical differences may be negligible for many use-cases.