Advertisement
DNNdrago

13. Replace the White-Spaces

Jul 24th, 2014
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function replaceSpaces(value) {
  2. value = value.replace(/ /g, '&nbsp');
  3.  
  4. return value;
  5. }
  6.  
  7.  
  8. console.log(replaceSpaces('But you were living in another world tryin\' to get your message through'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement