Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
compare the ways to generate a random array for iteration + while
- Array.apply: Array.apply(null, Array(100)) - Destructuring operator: [...Array(100)] - Array.prototype.fill Array(100).fill(undefined) - Array.from Array.from({ length: 100 })
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36
Browser:
Chrome 121
Operating system:
Windows
Device Platform:
Desktop
Date tested:
2 years ago
Test name
Executions per second
[...Array(n)]
5191.5 Ops/sec
Array(n).fill(null)
5253.5 Ops/sec
Array.from({ length: n })
4117.5 Ops/sec
Array.from({ length:n }, (item, i) => i)
3967.5 Ops/sec
while(up--) myArray.push(Math.random());
5329.6 Ops/sec
Tests:
[...Array(n)]
[...Array(1000)].map(() => Math.random());
Array(n).fill(null)
Array(1000).fill(null).map(() => Math.random());
Array.from({ length: n })
Array.from({ length: 1000 }).map(() => Math.random());
Array.from({ length:n }, (item, i) => i)
Array.from({ length:1000 }, () => Math.random());
while(up--) myArray.push(Math.random());
let myArray = []; let up = 1000; while(up--) myArray.push(Math.random());