Javascript String score()

Description

Javascript String score()


String.prototype.score = function() {
  return this.replace(/ /g, '_');
};



PreviousNext

Related