El método Set.clear() en JavaScript se usa para eliminar todos los elementos de un conjunto y dejarlo vacío. No es necesario enviar argumentos como parámetros al método Set.clear() y devuelve un valor de retorno indefinido.
Sintaxis:
mySet.clear()
Parámetros: Este método no acepta ningún parámetro.
Valor de retorno: este método devuelve un valor indefinido.
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(23); // Print the modified set console.log(myset); console.log(myset.size); // The clear() method will remove // all elements from the set myset.clear(); // This will return 0 as there // are no elements present in the Set console.log(myset.size); </script>
Producción:
Set(1) { 23 } 1 0
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("Manchester"); myset.add("London"); myset.add("Leeds"); // Print the modified set console.log(myset); console.log(myset.size); // The clear() method will remove // all elements from the set myset.clear(); // This will return 0 as the set is empty console.log(myset.size); </script>
Producción:
Set(3) { 'Manchester', 'London', 'Leeds' } 3 0
Navegadores compatibles:
- Chrome de Google: 38+
- Firefox: 19+
- Explorador de Internet: 11+
- Ópera: 25+
- Borde: 12+
- Safari: 08+
Publicación traducida automáticamente
Artículo escrito por shinjanpatra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA