Compare different ways to iterate over an array.
const arr = Array.from({length: 10000}, (_, i) => i);Initializing...
| Test Case | Ops/sec | |
|---|---|---|
| for loop | | ready |
| forEach | | ready |
| for...of | | ready |
| reduce | | ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.