Javascript Array notEmpty()

Description

Javascript Array notEmpty()


Array.prototype.notEmpty = function() {
  return !this.isEmpty();
};



PreviousNext

Related