Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js
m.set(k, v);

m has type Map.
m[k] = v;

m is an Object.
In this case m is used as a map of key/value pairs.
(assoc m k v)

Returns a new map.

New implementation...