I\'m trying to iterate over a typescript map but I keep getting errors and I could not find any solution yet for such a trivial problem.
My code is:
This worked for me.
Object.keys(myMap).map( key => { console.log("key: " + key); console.log("value: " + myMap[key]); });