Script Preparation code:
x
 
const value = "douche nation"
const ending = "tion"
function compareEndsWith(val, comparator) {
  return val.endsWith(comparator)
}
function compareSliceMethod(val, comparator) {
  const thingToCompare = val.slice(-comparator.length)
  return thingToCompare === comparator
}
Tests:
  • endWith

     
    const value = "douche nation"
    const ending = "tion"
    compareEndsWith(value, ending)
  • slice

     
    const value = "douche nation"
    const ending = "tion"
    compareSliceMethod(value, ending)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    endWith
    slice

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 8 days ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Chrome 133 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
endWith 97852408.0 Ops/sec
slice 186108464.0 Ops/sec