DEV Community

Discussion on: Array.map() much slower than for loop

 
atwright147 profile image
Andy Wright

Correct. However, you should avoid using the for loop in general, because it will iterate over every property of the item passed to it including things which you might not want to iterate over (like a for in loop would do).

Alternatives to for include: forEach, for of, map etc