Run details:
Mozilla/5.0 (Linux; Android 12; Pixel 4a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.104 Mobile Safari/537.36
Chrome Mobile 96
Android
Mobile
3 years ago
Test name Executions per second
.endsWith 1606677.1 Ops/sec
.includes 1575097.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);