Skip to content

Instantly share code, notes, and snippets.

@marcustallberg
Created May 26, 2015 18:33
Show Gist options
  • Select an option

  • Save marcustallberg/2babac207322b91231dd to your computer and use it in GitHub Desktop.

Select an option

Save marcustallberg/2babac207322b91231dd to your computer and use it in GitHub Desktop.
Small JavaScript Helpers
function stripWhitespaces(str){
return str.split("").filter(function(character){
return character !==" ";
}).join("");
};
var x = stripWhitespaces("A B C") // x is ABC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment