Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36
Chrome 78
Linux
Desktop
4 years ago
Test name Executions per second
Native 9072365.0 Ops/sec
Lodash 1291030.4 Ops/sec
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");