El método Set.delete() en JavaScript se usa para eliminar un elemento con un valor específico en un conjunto y devuelve un valor booleano según la disponibilidad del elemento. No modificará el conjunto si el elemento con el valor especificado no existe en el conjunto y devolverá falso en su lugar.
Sintaxis:
mySet.delete(value)
Parámetros:
- valor:Es el valor del elemento que se va a eliminar del Conjunto.
Veamos ahora algunos ejemplos para ilustrar el método delete():
Ejemplo 1:
Javascript
<script> // Create a new set using Set() constructor let myset = new Set(); // Append new elements to the set // using add() method myset.add(75); myset.add(12); // Print the modified set document.write(myset); // As 75 exists, it will be removed // and it will return true document.write(myset.delete(75)); document.write(myset); </script>
Producción:
Set(2) { 75, 12 } true Set(1) { 12 }
Ejemplo 2:
Javascript
<script> // Create a new set using Set() constructor let myset = new Set(); // Append new elements to the set // using add() method myset.add(23); myset.add(12); // Print the modified set document.write(myset); // As 43 does not exist nothing will be // changed and it will return false document.write(myset.delete(43)); document.write(myset); </script>
Producción:
Set(2) { 23, 12 } false Set(2) { 23, 12 }
Navegadores compatibles:
- Chrome 38 y superior
- Borde 12 y superior
- Firefox 24 y superior
- Ópera 25 y superior
- Safari 8 y superior
Publicación traducida automáticamente
Artículo escrito por shinjanpatra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA