Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
array[array.length - 1] vs array.at(-1) vs array[len -1]
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36
Browser:
Chrome 123
Operating system:
Linux
Device Platform:
Desktop
Date tested:
one year ago
Test name
Executions per second
array[array.length - 1]
10917637.0 Ops/sec
array.at(-1)
19752808.0 Ops/sec
array[len - 1]
10621915.0 Ops/sec
Script Preparation code:
var array = [1,2,3];
Tests:
array[array.length - 1]
const d = array[array.length - 1];
array.at(-1)
const z = array.at(-1);
array[len - 1]
const len = array.length; const a = array[len - 1];