Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wallace7souza/41919f4d6b279d535e6efadf3fe3680b to your computer and use it in GitHub Desktop.
Save wallace7souza/41919f4d6b279d535e6efadf3fe3680b to your computer and use it in GitHub Desktop.
Replace all spaces characters
var str = 'a b c';
var replaced = str.replace(/\s/g, '+');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment