It’s not a map. It’s simply an Object.
Edit: below code is worse than OP’s, as Amit pointed out in comments.
You can “iterate over the values” by actually iterating over the keys with:
var value;
Object.keys(map).forEach(function(key) {
value = map[key];
console.log(value);
});