Script Preparation code:
x
 
var a = "z11";
var b = "z1";
var options = {
  sensitivity: 'base',
  numeric: true,
};
var collator = new Intl.Collator(undefined, options);
Tests:
  • localeCompare()

     
    a.localeCompare(b, undefined, options) === 1
  • Intl.Collator.compare()

     
    collator.compare(a, b) === 1
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    localeCompare()
    Intl.Collator.compare()

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 22 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
localeCompare() 516952.3 Ops/sec
Intl.Collator.compare() 11025344.0 Ops/sec