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 = [
    1, 2, 3
]
Tests:
  • array find

     
    // Native
    users.find(function (o) { return o == 3; })
  • _.find

     
    _.find(users, function (o) { return o==3; })
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: 28 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0
Chrome 132 on Windows
View result in a separate tab
Test name Executions per second
array find 72933048.0 Ops/sec
_.find 27451084.0 Ops/sec