Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36
Chrome 92
Linux
Desktop
3 years ago
Test name Executions per second
Optional Chaining 3729384.8 Ops/sec
Lodash 2441294.2 Ops/sec
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
  • Lodash

     
    _.get(obj, "a.b.c.d")