Skip to content

Instantly share code, notes, and snippets.

@bcls
Created November 1, 2017 21:07
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/773df3412445776e8082aaf4b8725d2a to your computer and use it in GitHub Desktop.
Save bcls/773df3412445776e8082aaf4b8725d2a 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