This article needs an editorial review. How you can help.
This is a new technology, part of the ECMAScript 2015 (ES6) standard.
This technology's specification has been finalized, but check the compatibility table for usage and implementation status in various browsers.
El mètode delete()
elimina l'element especificat de l'objecte Map.
Sintaxi
myMap.delete(clau);
Paràmetres
- clau
- Necessari. La clau de l'element a eliminar de l'objecte
Map.
valor Return
Retorna true
si un element de l'objecte Map
s'ha eleminat amb èxit.
Exemples
Utilitzar el mètode delete
var myMap = new Map(); myMap.set("bar", "foo"); myMap.delete("bar"); // Retorna true. Eliminat satisfactòriament. myMap.has("bar"); // Retorna false. L'element "bar" ja no és present.
Especificacions
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Map.prototype.delete' in that specification. |
Standard | Definició inicial. |
Compatibilitat amb navegadors
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | 38 | 13.0 (13.0) | 11 | 25 | 7.1 |
Característica | Android | Chrome per Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | Not supported | 38 | 13.0 (13.0) | Not supported | Not supported | 8 |