`forEach` just runs the lambda for each value and ...
# getting-started
k
forEach
just runs the lambda for each value and returns nothing,
map
returns a
List
of values returned by the lambda.
👍 2