Iteration method for Map object
forEach(): Iterates through the map and executes a callback for each entry.
keys(): Iterates through just the keys of the map.
values(): Iterates through just the values of the map.
entries(): Iterates through both keys and values as [key, value] pairs.
Hashtags:
#foreachloop #javascript #map