Skip to content

Instantly share code, notes, and snippets.

@avishwakarma
Created June 28, 2016 06:08
Show Gist options
  • Select an option

  • Save avishwakarma/0086274cdd260aeb04440e98719d7957 to your computer and use it in GitHub Desktop.

Select an option

Save avishwakarma/0086274cdd260aeb04440e98719d7957 to your computer and use it in GitHub Desktop.
remove all spaces (" ") from string
/**
* remove all spaces (" ") from string
* @uses removeSpaces("sample string with s p a c e s") // samplestringwithspaces
*/
function removeSpaces(str){
return (str + "").replace(/ /g,'');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment