Deletes the value for a given key. Returns whether the key was found and successfully deleted.
var map = new Map({a: 10}); map.toObject(); // {"a":10} map.delete("a"); // true map.toObject(); // {} map.delete("a"); // false