HTML Preparation code:
AخA
 
1
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
Script Preparation code:
 
var obj = {a: {b: {c: {d: 1}}}}
var badObj = {}
Tests:
  • ES5 Optional Chaining

     
    (obj.a == null ? undefined : obj.a.b == null ? undefined : obj.a.b.c == null ? undefined : obj.a.b.c.d) || 2
    (badObj.a == null ? undefined : badObj.a.b == null ? undefined : badObj.a.b.c == null ? undefined : badObj.a.b.c.d) || 2
  • ES6 Optional Chaining

     
    obj?.a?.b?.c?.d || 2
    badObj?.a?.b?.c?.d || 2
  • Lodash Get

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

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    ES5 Optional Chaining
    ES6 Optional Chaining
    Lodash Get

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0
Firefox 85 on Windows 7
View result in a separate tab
Test name Executions per second
ES5 Optional Chaining 34254436.0 Ops/sec
ES6 Optional Chaining 31376830.0 Ops/sec
Lodash Get 1563903.4 Ops/sec