Tests:
  • toLowerCase and indexOf

    AخA
     
    const array = new Array(1000).fill(null).map(() => 'no match found').concat(['Bingo', 'BINGO', 'bingo', 'Bingo', 'bingo']);
    array.filter(i => i.toLowerCase().indexOf('bingo') !== -1);
  • regex case-insensitive flag

     
    const array = new Array(1000).fill(null).map(() => 'no match found').concat(['Bingo', 'BINGO', 'bingo', 'Bingo', 'bingo']);
    array.filter(i => i.match(/bingo/i));
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    toLowerCase and indexOf
    regex case-insensitive flag

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
Chrome 87 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
toLowerCase and indexOf 26494.6 Ops/sec
regex case-insensitive flag 27489.2 Ops/sec