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:{c:1},b:[{v:3},{f:2}]};
Tests:
  • Native

     
    let a = obj.b[0].v;
  • Lodash

     
    let a = _.get(obj,"b[0].v");
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Native
    Lodash

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36
Chrome 78 on Linux
View result in a separate tab
Test name Executions per second
Native 9072365.0 Ops/sec
Lodash 1291030.4 Ops/sec