var map = {}; map[key] = value;
How can I
Recently it could be
map[key] = (map[key] ?? 0) + 1;
Nullish coalescing operator