HTML Preparation code:
AخA
 
1
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.core.js"></script>
Script Preparation code:
 
var users = Array.from(Array(10000).keys()).map(age => ([{
        'user': age,
        'age': age
    },
]))
Tests:
  • array find

     
    // Native
    users.find(function (o) { return o.age < 5000; })
  • _.find

     
    _.find(users, function (o) { return o.age < 5000; })
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    array find
    _.find

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 Edg/92.0.902.84
Chrome 92 on Windows
View result in a separate tab
Test name Executions per second
array find 53588.3 Ops/sec
_.find 153614.5 Ops/sec