Javascript String removeComma()

Description

Javascript String removeComma()

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



PreviousNext

Related