var obj = {a: 'name'};
var obj2 = undefined;
var complexObj = {a: {b: 'name'}}
var complexObj2 = {a: {b: undefined}};
let val = obj?.a;
let val;
if(obj && obj.a) {
val = obj.a
}
let val = obj2?.a;
let val;
if(obj2 && obj2.a) {
val = obj2.a
}
let val = complexObj?.a?.b;
let val;
if(complexObj && complexObj.a && complexObj.a.b) {
val = complexObj.a.b;
}
let val = complexObj2?.a?.b;
let val;
if(complexObj2 && complexObj2.a && complexObj2.a.b) {
val = complexObj2.a.b;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
optional deez | |
if deez | |
optional nutz | |
if nutz | |
optional sugon | |
if sugon | |
optional sugondeez | |
if sugondeez |
Test name | Executions per second |
---|---|
optional deez | 25464790.0 Ops/sec |
if deez | 8300625.0 Ops/sec |
optional nutz | 23507550.0 Ops/sec |
if nutz | 22775068.0 Ops/sec |
optional sugon | 24508204.0 Ops/sec |
if sugon | 6258838.0 Ops/sec |
optional sugondeez | 24649244.0 Ops/sec |
if sugondeez | 8281298.0 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
Benchmark Definition JSON
The provided Benchmark Definition JSON represents a set of tests that evaluate the performance of JavaScript code in various scenarios. The Script Preparation Code
section defines the variables and objects used in each test case. Here's a brief explanation of what's tested:
optional deez
, if nutz
, if deez
, and if sugondeez
test cases evaluate the performance of optional chaining (?.
) in different situations.optional sugon
, if sugon
, optional sugondeez
, and if sugondeez
test cases evaluate the performance of nested optional chaining (?.?
) in different situations.Options Compared
The benchmark compares two approaches for each test case:
?.
): This syntax allows you to access a property or method on an object without explicitly checking if the object is null or undefined.&&
): This approach requires you to manually check if the object is null or undefined before accessing its properties.Pros and Cons
?.
) Pros:?.
) Cons**:&&
) Pros:&&
) Cons:Libraries and Special JS Features
None of the test cases explicitly use a library or special JavaScript feature beyond the standard language features. However, it's worth noting that MeasureThat.net might be using some internal libraries or optimizations to improve performance.
Other Alternatives
If you're interested in exploring alternative approaches for optional chaining, you can consider the following:
??
): This is a relatively new syntax introduced in JavaScript 2020 (ES12) that allows you to provide a default value when accessing an object's property.Keep in mind that the performance differences between these approaches may vary depending on the specific use case and JavaScript environment.