Este método isArray() en jQuery se usa para determinar si el argumento es una array.
Sintaxis:
jQuery.isArray( object )
Parámetros: el método isArray() acepta solo un parámetro que se menciona arriba y se describe a continuación:
- objeto: este parámetro es el objeto para probar si es o no una array.
Valor devuelto: Devuelve el valor booleano.
Los siguientes ejemplos ilustran el uso del método isArray() en jQuery:
Ejemplo 1: en este ejemplo, el método isArray() verifica que el parámetro sea una array.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | isArray() method</title> <script src= "https://code.jquery.com/jquery-3.4.1.js"> </script> </head> <body style="text-align:center;"> <h1 style="color: green"> GeeksForGeeks </h1> <h3>JQuery | isArray() method</h3> <b>Whether "{}" is a Array Object : </b> <p></p> <script> $( "p" ).append( "" + $.isArray("{}")); </script> </body> </html>
Producción:
Ejemplo 2: en este ejemplo, el método isArray() también verifica que el parámetro sea una array.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | isArray() method</title> <script src="https://code.jquery.com/jquery-3.4.1.js"></script> </head> <body style="text-align:center;"> <h1 style="color: green"> GeeksForGeeks </h1> <h3>JQuery | isArray() method</h3> <b>Whether String is a Array Object : </b> <p id ="gfg"></p> <b>Whether Array is a Array Object : </b> <p id ="gfg1"></p> <script> // string ="Shubham" $( "#gfg" ).append( "Shubham : " + $.isArray("Shubham")); // array $( "#gfg1" ).append( "[1, 3, 4, 6, 8] : " + $.isArray([1, 3, 4, 6, 8])); </script> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA