Script Preparation code:
AخA
 
var str = new String('foo bar baz');
var noop = Function.prototype;
Tests:
  • character index

     
    if (str[0] == 'f') noop();
  • charAt()

     
    if (str.charAt(0) == 'f') noop();
  • slice()

     
    if (str.slice(0, 1) == 'f') noop();
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    character index
    charAt()
    slice()

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36
Chrome 81 on Mac OS X 10.14.6
View result in a separate tab
Test name Executions per second
character index 3236445.5 Ops/sec
charAt() 3035965.5 Ops/sec
slice() 2942014.0 Ops/sec