“Jeśli 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

tablica nie powinna być pustym php

$arr = array();

if(!empty($arr)){
  echo "not empty";
}
else 
{
  echo "empty";
}
Ankur

Jeśli tablica jest pusta

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

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

Odpowiedzi podobne do “Jeśli tablica jest pusta”

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

Przeglądaj inne języki kodu