How would you modify the String prototype in Javascript so that it printed out spaces in between every character?
Anonymous
String.prototype.toSpaceString = function() { return this.split('').join(' '); }
Check out your Company Bowl for anonymous work chats.