Skip to content

Instantly share code, notes, and snippets.

@Rosey
Created May 28, 2018 19:13
Show Gist options
  • Save Rosey/b831cf5742dec4dcfff5746ef7672082 to your computer and use it in GitHub Desktop.
Save Rosey/b831cf5742dec4dcfff5746ef7672082 to your computer and use it in GitHub Desktop.
Good Example
const MY_REGEXP = /\d+/g;
items.forEach(function (item) {
item.replace(MY_REGEXP, 'boop');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment