¿Cómo vaciar una array en JavaScript?

Hay muchas formas de vaciar una array en JavaScript, algunas de ellas se describen a continuación:

Método 1: Configuración de una nueva array: este método establece la variable de array en una nueva array de tamaño cero, luego funcionará perfectamente.

Ejemplo:

<!DOCTYPE html>  
<html>  
  
<head> 
    <title> 
        JavaScript to set array empty
    </title>
</head> 
           
<body style = "text-align:center;">  
       
    <h1 style = "color:green;" >  
        GeeksForGeeks  
    </h1>  
               
    <p id = "up"></p>
      
    <button onclick="empty()"> 
        Click to Empty
    </button> 
      
    <p id = "down" style="color: green"></p>
      
    <!-- Script to set size of array to zero -->
    <script> 
        var GFG_Array = [1, 2, 3, 4, 5];
        var up = document.getElementById("up");
        up.innerHTML = GFG_Array;
        var down = document.getElementById("down");
        down.innerHTML = "length of GFG_Array = "
                + GFG_Array.length;
        function empty() {
            GFG_Array = [];
            down = document.getElementById("down");
            down.innerHTML = "length of GFG_Array = "
                    + GFG_Array.length;
        }
    </script> 
</body>  
  
</html>

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Método 2: Uso de la propiedad de longitud: este método establece la longitud de la array en cero.

Ejemplo:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        Create empty array
    </title>
</head> 
          
<body style = "text-align:center;"> 
  
    <h1 style = "color:green;" > 
        GeeksForGeeks 
    </h1> 
              
    <p id="up"></p>
      
    <button onclick="empty()"> 
        Click to Empty
    </button> 
      
    <p id="down" style="color: green"></p>
      
    <!-- Script to set the size of array to zero -->
    <script> 
        var GFG_Array = [1, 2, 3, 4, 5];
        var up = document.getElementById("up");
        up.innerHTML = GFG_Array;
        var down = document.getElementById("down");
        down.innerHTML = "length of GFG_Array = "
                + GFG_Array.length;
                  
        function empty() {
            GFG_Array.length = 0;
            down = document.getElementById("down");
            down.innerHTML = "length of GFG_Array = "
                    + GFG_Array.length;
        }
    </script> 
</body> 
  
</html>                    

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Método 3: Uso del método pop: este método extrae el elemento de la array continuamente y obtiene la array vacía. Pero este método lleva más tiempo que otros y no es muy preferido.
Ejemplo:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        Create empty array
    </title>
</head>
          
<body style = "text-align:center;"> 
      
    <h1 style = "color:green;" > 
        GeeksForGeeks 
    </h1> 
              
    <p id="up"></p>
      
    <button onclick="empty()"> 
        Click to Empty
    </button> 
      
    <p id="down" style="color: green"></p>
      
    <!-- Script to set the size of array to zero -->    
    <script> 
        var GFG_Array = [1, 2, 3, 4, 5];
        var up = document.getElementById("up");
        up.innerHTML = GFG_Array;
        var down = document.getElementById("down");
        down.innerHTML = "length of GFG_Array = "
                + GFG_Array.length;
                  
        function empty() {
            while(GFG_Array.length > 0) {
                GFG_Array.pop();
            }
            down = document.getElementById("down");
            down.innerHTML = "length of GFG_Array = "
                    + GFG_Array.length;
        }
    </script> 
</body> 
  
</html>                    

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Publicación traducida automáticamente

Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *