Script Preparation code:
AخA
 
var obj = {a: {b: {c: {d: 1}}}}
Tests:
  • Optional Chaining

     
    (obj.a == null ? undefined : obj.a.b == null ? undefined : obj.a.b.c == null ? undefined : obj.a.b.c.d) || 2
  • Lodash

     
    _.get(obj, "a.b.c.d", 2)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Optional Chaining
    Lodash

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36
Chrome 92 on Windows
View result in a separate tab
Test name Executions per second
Optional Chaining 3294327.2 Ops/sec
Lodash 2277426.5 Ops/sec