#DailyBloggingChallenge (62/100)
#TIL that the convenience that one gets using `forEach` do not outweigh the performance lost.
In comparison the standard `for`-loop within #JavaScript performs the most(*) operations per second and `forEach` the least ([Source](https://jsbench.me/7ejagsewtr)). *: To squeeze even more performance one should cache the length of the array.
Further it should be considered to convert all other `for` operators like `for... in` or `for... of` to the standard `for`-loop.
Although these performance differences matter when iterating through larger numbers. Thus, one could argue on the smaller scale that the convenience makes sense. Though this could harden bad #coding practices for the future.