Skip to content

Instantly share code, notes, and snippets.

@ozantunca
Last active September 6, 2020 10:12
Embed
What would you like to do?
function removeFromText(text, strToBeRemoved) {
return text.split(strToBeRemoved).join('');
}
removeFromText('lorem+ipsum+dolor+sit+amet', '+');
// -> 'loremipsumdolorsitamet' ✅
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment