Skip to content

Instantly share code, notes, and snippets.

@dapinitial
Last active August 29, 2015 13:56
Show Gist options
  • Save dapinitial/9220048 to your computer and use it in GitHub Desktop.
Save dapinitial/9220048 to your computer and use it in GitHub Desktop.
String.prototype.spacify = function(str) {
var newString = '',
str = this;
for(var i = 0; i < str.length; i++) {
if(str[i] !== ' ') {
newString += (str[i] + " ");
}
}
return newString;
};
"hello world".spacify();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment