HTML Preparation code:
AخA
 
1
<div id='test'></div>
Tests:
  • for

     
    var arr = ['hello', 'a', 'b'];
    let val;
    for(i=0; i<arr.length; i++){
      var value = arr[i];
      if (value === 'b') {
        val = value;
       }
    }
  • find

     
    var arr = ['hello', 'a', 'b'];
    let val = arr.find(node => node.id === 'b');
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for
    find

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36
Chrome 100 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
for 84858616.0 Ops/sec
find 89710312.0 Ops/sec