how to add to the map items js code example
Example: append to map javascript
var myMap = {};
myMap[newKey] = newValue;
// ...
// Another method
var myMap = new Map()
myMap.set("key0","value")
// ...
myMap.has("key1"); // evaluates to false, assuming key1 wasn't set