JS: Map.prototype.set
(new in JS: ECMAScript 2015)
mapObj.set(key, val)
-
Add a entry to the map mapObj . If the key already exist, overwrite its value.
Return the modified map.
// create a map const xx = new Map(); // add entry const xResult = xx.set(3, "n3"); // the map is modified console.log(xx); // Map { 3 => 'n3' } // return value is the modified map console.log(xResult); // Map { 3 => 'n3' }
JS Map.prototype
- JS: Map.prototype.constructor
- JS: Map.prototype.size
- JS: Map.prototype[Symbol.toStringTag]
- JS: Map.prototype.get
- JS: Map.prototype.set
- JS: Map.prototype.has
- JS: Map.prototype.delete
- JS: Map.prototype.clear
- JS: Map.prototype.forEach
- JS: Map.prototype.keys
- JS: Map.prototype.values
- JS: Map.prototype.entries