Javascript String wordCount()

Description

Javascript String wordCount()

String.prototype.wordCount = function() {
  return this.words().length;
};



PreviousNext

Related