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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36
Browser:
Chrome Mobile 120
Operating system:
Android
Device Platform:
Mobile
Date tested:
2 years ago
Test name
Executions per second
character index
3836998.0 Ops/sec
charAt()
3888161.2 Ops/sec
slice()
3874561.5 Ops/sec
at()
3767506.8 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();