¿Cómo obtener una estructura de array con alerta() en JavaScript?

Aquí está el código para ver la estructura de la array usando alert() .
A continuación, se analizan algunas técnicas
del Enfoque 1:

  • Primero tome los valores en una variable (vamos a arr).
  • Pase el nombre de la array en alert() .
  • Podemos usar directamente el nombre de la array porque arrayName se convierte automáticamente en arrayName.toString()

Ejemplo 1: Este ejemplo sigue el enfoque discutido anteriormente.

<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        How to get array structure 
        with alert() in JavaScript?
    </title>
</head>
  
<body style="text-align:center;" id="body">
    <h1 style="color:green;"> 
            GeeksForGeeks 
    </h1>
    
    <p id="GFG_UP" style="font-size: 15px; font-weight: bold;">
    </p>
    
    <button onclick="gfg_Run()">
        Click here
    </button>
    
    <script>
        var el_up = document.getElementById("GFG_UP");
        var arr = [1, 2, 4, 6, 9];
        el_up.innerHTML = 
"Click on the button to see the array structure using Alert().<br> Array is = "
        + arr;
  
        function gfg_Run() {
            alert(arr);
        }
    </script>
</body>
  
</html>

Producción:

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

Enfoque 2:

  • Primero tome los valores en una variable (vamos a arr).
  • Pase el nombre de la array en alert() .
  • Podemos usar el método .join() por nuestra simplicidad para ver los elementos de la array cada uno en una línea.

Ejemplo 2: Este ejemplo sigue el enfoque discutido anteriormente.

<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        How to get array structure
        with alert() in JavaScript?
    </title>
</head>
  
<body style="text-align:center;" id="body">
    <h1 style="color:green;"> 
            GeeksForGeeks 
        </h1>
    <p id="GFG_UP" style="font-size: 15px; font-weight: bold;">
    </p>
    <button onclick="gfg_Run()">
        Click here
    </button>
    <script>
        var el_up = document.getElementById("GFG_UP");
        var arr = [1, 2, 4, 6, 9];
        el_up.innerHTML = 
"Click on the button to see the array structure using Alert().<br> Array is = "
        + arr;
  
        function gfg_Run() {
            alert(arr.join('\n'));
        }
    </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 *