“Jak sprawdzić pustą tablicę ciągów w JavaScript” Kod odpowiedzi

JavaScript Sprawdź, czy tablica jest pusta

if (typeof array !== 'undefined' && array.length === 0) {
    // the array is defined and has no elements
}
Code Hero

JavaScript Sprawdź, czy tablica jest pusta

if (array && !array.length) {
    // array is defined but has no element
}
Scriper

JavaScript, a nie pusta tablica, a nie ciąg

if (Array.isArray(array) && array.length) {
    // array exists and is not empty
}
crawlingcity

Sprawdź, czy tablica jest pustym JavaScript

if (!Array.isArray(array) || !array.length) {
  // array does not exist, is not an array, or is empty
  // ⇒ do not attempt to process array
}
Nice Nightingale

JS Sprawdź, czy tablica jest pusta

if (typeof image_array !== 'undefined' && image_array.length > 0) {
    // the array is defined and has at least one element
}
Rich Rook

Jak sprawdzić pustą tablicę ciągów w JavaScript

function checkEmptyString(item){
     if (item.trim().length > 0) return false;
     else return true;
    };
    
function checkIfArrayContainsEmptyString(array) {
  const containsEmptyString = array.some(checkEmptyString);
  return containsEmptyString;
};
    
console.log(checkIfArrayContainsEmptyString(["","hey","","this","is","my","solution"]))
// *returns true*

console.log(checkIfArrayContainsEmptyString(["yay","it","works"]))
// *returns false*
 Run code snippetHide results
Simman

Odpowiedzi podobne do “Jak sprawdzić pustą tablicę ciągów w JavaScript”

Pytania podobne do “Jak sprawdzić pustą tablicę ciągów w JavaScript”

Więcej pokrewnych odpowiedzi na “Jak sprawdzić pustą tablicę ciągów w JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu