Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36
Chrome 127
Windows
Desktop
5 months ago
Test name Executions per second
text.includes() 33369206.0 Ops/sec
regex.test() 21100954.0 Ops/sec
string.match() 18288242.0 Ops/sec
string.indexOf() 32881176.0 Ops/sec
Script Preparation code:
AخA
 
var url='https://www.google.com/matchthis/other/args'
Tests:
  • text.includes()

     
    url.includes('matchthis')
  • regex.test()

     
    /matchthis/.test(url)
  • string.match()

     
    url.match(/matchthis/)
  • string.indexOf()

     
    url.indexOf('matchthis') >= 0