map([100, 150, 200], current * 1.1)
-
Suppose you have a list of prices for different items and want to add a 10% sales tax to each price.
-
The original list consists of prices [100, 150, 200]. The expression current * 1.1 adds 10% to each price, resulting in a new list that contains the total prices after tax.