Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36
Chrome 130
Mac OS X 10.15.7
Desktop
2 months ago
Test name Executions per second
text.includes() 7434792.0 Ops/sec
regex.test() 5249996.5 Ops/sec
string.match() 4480768.5 Ops/sec
string.indexOf() 7437299.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