Skip to content

Instantly share code, notes, and snippets.

@chris-sev
Last active December 1, 2018 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chris-sev/7be587f89ba2ee18f105a57a791a2c18 to your computer and use it in GitHub Desktop.
Save chris-sev/7be587f89ba2ee18f105a57a791a2c18 to your computer and use it in GitHub Desktop.
Replace One Instance
const myMessage = 'this is the sentence to end all sentences';
const newMessage = myMessage.replace('sentence', 'message');
console.log(newMessage); // this is the message to end all sentences
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment