Skip to content

Instantly share code, notes, and snippets.

@bcls
Last active September 27, 2017 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcls/8ee2e0fd7532584d814fa1d428e493a7 to your computer and use it in GitHub Desktop.
Save bcls/8ee2e0fd7532584d814fa1d428e493a7 to your computer and use it in GitHub Desktop.
Remove spaces from a string #javascript
/**
* remove spaces from a string
* @param {String} str string to process
* @return {String} trimmed string
*/
function removeSpaces(str) {
str= str.replace(/\s/g, '');
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment