Skip to content

Instantly share code, notes, and snippets.

@attdona
Created January 31, 2018 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save attdona/502d67b99629592f368479ad8843b7d6 to your computer and use it in GitHub Desktop.
Save attdona/502d67b99629592f368479ad8843b7d6 to your computer and use it in GitHub Desktop.
typescript map example
class MyMap {
[key: string]: string;
}
let map: MyMap = new MyMap()
map["key"] = "value"
console.log(map["key"])
delete map["key"]
console.log(map["key"])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment