const prices = ['1000', '2000', '3000'];
// undefined
const newPricesForEach = prices.forEach((price) => price + '원');
// ['1000', '2000', '3000'];
const newPricesMap = prices.map((price) => price + '원'));
undefined
이다. (공식문서에도 나옴)
<aside> 💡 map과 forEach를 상황마다 적절히 사용해야한다.
</aside>