Languages
[Edit]
EN

JavaScript - check if array is empty

5 points
Created by:
Welsh
772

Using JavaScript it is possible to check if an array is empty in the following way.

1. Custom function example

Note: Array.isArray(array) method can be useful too to check if varialbe is array type.

// ONLINE-RUNNER:browser;

var array1 = [ ];
var array2 = [1, 2, 3];
var array3 = [false];
var array4 = [function() { return false; }];
var array5 = [{result: false}];

console.log(array1.length == 0); // true
console.log(array2.length == 0); // false
console.log(array3.length == 0); // false
console.log(array4.length == 0); // false
console.log(array5.length == 0); // false

Output:

true
false
false
false
false
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join