Skip to content

isEmpty

Subhajit Sahu edited this page Jun 7, 2020 · 11 revisions

Checks is array is empty. 🏃 📼 📦 🌔 📒

Similar: index, indexRange, size, isEmpty.

array.isEmpty(x);
// x: an array
const array = require('extra-array');

var x = [1, 2, 3];
array.isEmpty(x);
// false

var x = [];
array.isEmpty(x);
// true

references

Clone this wiki locally