Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function replaceSpaces(value) {
- value = value.replace(/ /g, ' ');
- return value;
- }
- 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