nodejs is array empty code example
Example 1: javascript check if array is empty
if (typeof array !== 'undefined' && array.length === 0) {
// the array is defined and has no elements
}
Example 2: empty array javascript
let myArray = [12 , 222 , 1000 ];
myArray.length = 0; // myArray will be equal to [].