const updatedPrices = prices.map(price => price + 20);
console.log(updatedPrices);
のprice + 20についてですが、priceの各要素に対して20足すので、price += 20と書く認識でおりましたが、=はなぜいらないのですか?
因みに
const updatedPrices = prices.map(price => price += 20);
console.log(updatedPrices);
にしても結果は変わりませんでした。
この回答を見るにはプレミアムプランへの登録が必要です
プレミアムプランとは?