We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Couldn't load subscription status. Retry
There was an error while loading. Please reload this page.
Checks if that array is empty or not.
Array.prototype.isEmpty();
Is empty or not.
var a1 = []; var a2 = [5979, 'TM']; var res1 = a1.isEmpty(); // (true) var res2 = a2.isEmpty(); // (false)