Is the method [1, 2, 3].map(item=>f(item)) execute f(1), f(2), f(3) parallelly? Or execute like "f(1), then f(2), then f(3)"?
[1, 2, 3].map(item=>f(item))
f(1), f(2), f(3)