I have this map:
var map = new Map();
map.set("10/10", 0);
map.set("10/11", 1);
map.set("10/12", 2);
{
"10/10": 0,
"10/11": 1,
"10/12": 2,
}
And I want to add this new key/value:
"10/9": 0,
How can I increase the values of all the old map elements in 1? So I get the following map:
{
"10/9": 0,
"10/10": 1,
"10/11": 2,
"10/12": 3,
}
Mapobject?[...map.keys()].forEach(k => map.set(k, map.get(k) +1));and thenmap.set("10/9", 0);