rmalcoriza

removeDash

Jul 13th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function removeDash(message){
  2. var splittedText = message.split("-");
  3. var joinedText = splittedText.join(" ");
  4. return(joinedText);
  5. }
Add Comment
Please, Sign In to add comment