freeCodeCamp/guide/spanish/javascript/standard-objects/array/array-isarray/index.md

933 B

title localeTitle
Array isArray Array isArray

El método Array.isArray() devuelve true si un objeto es una matriz, false si no lo es.

Sintaxis

Array.isArray(obj) 

Parámetros

obj El objeto a comprobar.

Enlace MDN | Enlace MSDN

Ejemplos

// all following calls return true 
 Array.isArray([]); 
 Array.isArray([1]); 
 Array.isArray(new Array()); 
 // Little known fact: Array.prototype itself is an array: 
 Array.isArray(Array.prototype); 
 
 // all following calls return false 
 Array.isArray(); 
 Array.isArray({}); 
 Array.isArray(null); 
 Array.isArray(undefined); 
 Array.isArray(17); 
 Array.isArray('Array'); 
 Array.isArray(true); 
 Array.isArray(false); 
 Array.isArray({ __proto__: Array.prototype });