Skip to content

Instantly share code, notes, and snippets.

@StoneLabs
Created May 7, 2020 13:45
Show Gist options
  • Save StoneLabs/3d4addcce73a93c5a0474a67b978e3c0 to your computer and use it in GitHub Desktop.
Save StoneLabs/3d4addcce73a93c5a0474a67b978e3c0 to your computer and use it in GitHub Desktop.
JavaScript String.replaceall
String.prototype.replaceAll = function (search, replacement) { //String replace function
return this.replace(new RegExp(search, 'g'), replacement);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment