HTML Preparation code:
AخA
 
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.min.js"></script>
Script Preparation code:
x
 
window.obj = {};
for (var i = 0, len = 100; i < len; i++) {
  obj['key' + i] = 'value' + i;
}
Tests:
  • _.isEmpty

     
    _.isEmpty(window.obj);
  • Object.keys().length

     
    Object.keys(window.obj).length === 0;
  • .length

     
    !window.obj.length
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    _.isEmpty
    Object.keys().length
    .length

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 6 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36
Chrome 70 on Mac OS X 10.14.0
View result in a separate tab
Test name Executions per second
_.isEmpty 341793.7 Ops/sec
Object.keys().length 360643.4 Ops/sec
.length 7050588.0 Ops/sec