This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
Using Map.values():
// Create a Map const fruits = new Map([ ["apples", 500], ["bananas", 300], ["oranges", 200] ]); let total = 0; for (const x of fruits.values()) { total += x; } document.getElementById("demo").innerHTML = total;