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 Edg/127.0.0.0
Chrome 127
Windows
Desktop
2 months ago
Test name Executions per second
.endsWith 7948969.5 Ops/sec
.includes 7501798.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);