Javascript String removeWhiteSpace()
removeWhiteSpace()
String.prototype.removeWhiteSpace = function() { return this.replace(/\s/g, ""); };