Skip to content

Instantly share code, notes, and snippets.

@CodyKochmann
Created May 13, 2015 12:14
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 CodyKochmann/70e7498c0f30f780b1ee to your computer and use it in GitHub Desktop.
Save CodyKochmann/70e7498c0f30f780b1ee to your computer and use it in GitHub Desktop.
Removes all spaces from a string in javascript.
function remove_spaces(s){
// removes spaces from a string
// by: Cody Kochmann
return(s.split(" ").join(""));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment