Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
Chrome 119
Windows
Desktop
one year ago
Test name Executions per second
.endsWith 4876452.0 Ops/sec
.includes 4827962.0 Ops/sec
Script Preparation code:
x
 
var string = 'car';
var stringToCheck = 'car';
var result = null;
Tests:
  • .endsWith

     
    result = stringToCheck.endsWith(string);
  • .includes

     
    result = stringToCheck.includes(string);