Javascript Array isNothing()

Description

Javascript Array isNothing()


Array.prototype.isNothing = function() {
  return this.length === 0;
};



PreviousNext

Related