Javascript String removeComma()
removeComma()
String.prototype.removeComma = function() { return(this.replace(/,/g,'')); }