kstoyanov

02. Remove Occurrences

Jul 16th, 2020
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve(word, text) {
  2.   while (text.indexOf(word) !== -1) {
  3.     text = text.replace(word, '');
  4.   }
  5.   console.log(text);
  6. }
Add Comment
Please, Sign In to add comment