Javascript String replaces(a, b)

Description

Javascript String replaces(a, b)


String.prototype.replaces = function (a, b) {
  return this.replace(a, b);
};



PreviousNext

Related