HTML Preparation code:
AخA
 
1
<script src="https://cdn.jsdelivr.net/lodash/4/lodash.min.js"></script>
Script Preparation code:
x
 
var data = { foo: { bar: { baz: 'hello' } } }
function native(obj) {
  return (obj && obj.foo && obj.foo.bar && obj.foo.bar.baz) !== undefined;
}
function lodash(obj) {
   return _.get(obj, 'foo.bar.baz') !== undefined; 
}
Tests:
  • Native

     
    native(data)
  • Lodash

     
    lodash(data)
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: 5 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36
Chrome 76 on Mac OS X 10.14.6
View result in a separate tab
Test name Executions per second
Native 2908747.2 Ops/sec
Lodash 1016737.8 Ops/sec