is there a difference between `foo.forEach { it + ...
# getting-started
h
is there a difference between
foo.forEach { it + bar }
and
foo.map { it + bar }
and what is that difference?