News

Hint: Instead of all the specialized methods (filter, map, reduce, find) you can always choose to just use forEach instead. forEach is the GENERAL tool for (almost) everything. Map, reduce, filter, ...
We often need to repeat actions. For example, outputting goods from a list one after another or just running the same code for each number from 1 to 10. Loops are a way to repeat the same code ...