map.keys() // The keys() method returns the keys
map.values() // The values() method returns the values:
const map = new Map([
[1970, 'bell bottoms'],
[1980, 'leg warmers'],
[1990, 'flannel'],
])
// Map
Map.prototype.forEach((value, key, map) = () => {}
// Array
Array.prototype.forEach((item, index, array) = () => {}