Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
char index vs charAt() vs slice() vs at()
Compare methods for testing string's beginning character.
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64; rv:147.0) Gecko/20100101 Firefox/147.0
Browser:
Firefox 147
Operating system:
Linux
Device Platform:
Desktop
Date tested:
5 months ago
character index
91.9M/s
at()
90.2M/s
charAt()
87.7M/s
slice()
86.6M/s
View exact numbers
Test name
Executions per second
✓
character index
91,850,896 Ops/sec
at()
90,177,432 Ops/sec
charAt()
87,725,200 Ops/sec
slice()
86,616,408 Ops/sec
Script Preparation code:
var str = '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();
at()
if (str.at(0) === 'f') noop();