Map in typescript

TypeScript

let map = new Map<string, string>();
map.set("key", "hello world");
alert(map.get("key"));