Después de mirar en varios repositorios y páginas webs al final dimos con la respuesta que te compartimos más adelante.
Ejemplo 1: javascript comprobar si array esta vacio
if(typeof array !=='undefined'&& array.length===0)// the array is defined and has no elements
Ejemplo 2: javascript comprobar si array no está vacío
if(array ===undefined|| array.length==0)// array empty or does not exist
Ejemplo 3: JavaScript comprueba si array esta vacio
if(array &&!array.length)// array is defined but has no element
Ejemplo 4: comprobar array vacío o no en javascript
// To safely test if the array referenced by variable “array” isn’t empty:if(array && array.length)// not empty else// empty // Note that if “array” is assigned to some other object that isn’t an array, the code will still execute the “else” part.// A possible improvement to check that the object is specifically an empty array might be this:if(array && array.constructor===Array&& array.length===0)// strictly an empty array else// either null, or not an array or not an empty array
Ejemplo 5: javascript vacío array
var colors =["red","blue","green"];
colors =[];//empty the array
Ejemplo 6: javascript vacío array
arr =[];// set array=[]//functionconstempty=arr=> arr.length=0;//examplevar arr=[1,2,3,4,5];empty(arr)// arr=[]
Sección de Reseñas y Valoraciones
Recuerda algo, que tienes permiso de parafrasear si diste con el hallazgo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)