Answers for "is empty array"

PHP
17

array empty check in php

if (empty($array)) {
     // list is empty.
}
Posted by: Guest on April-15-2020
11

javascript check if array is empty

if (typeof array !== 'undefined' && array.length === 0) {
    // the array is defined and has no elements
}
Posted by: Guest on March-13-2020
14

javascript check if array is empty

if (array && !array.length) {
    // array is defined but has no element
}
Posted by: Guest on May-02-2020
0

javascript empty array

var arr1 = ['a','b','c','d','e','f'];
var arr2 = arr1;  // Reference arr1 by another variable 
arr1 = [];
console.log(arr2); // Output ['a','b','c','d','e','f']
Posted by: Guest on October-23-2020

Browse Popular Code Answers by Language