“Sprawdź, czy tablica jest pusta” Kod odpowiedzi

tablica pusta odprawa w PHP

if (empty($array)) {
     // list is empty.
}
Hjmcoder

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 nie jest pusta

if (array === undefined || array.length == 0) {
    // array empty or does not exist
}
Bewildered Booby

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 pusta

const isNotEmpty = arr => Array.isArray(arr) && arr.length > 0;

isNotEmpty([1, 2, 3]);
// Result: true
thefazeelahmed

Odpowiedzi podobne do “Sprawdź, czy tablica jest pusta”

Pytania podobne do “Sprawdź, czy tablica jest pusta”

Więcej pokrewnych odpowiedzi na “Sprawdź, czy tablica jest pusta” w JavaScript

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

Przeglądaj inne języki kodu