Nodejs Utililty Methods String Delete Comma

List of utility methods to do String Delete Comma

Description

The list of methods to do String Delete Comma are organized into topic(s).

Method

deleteComma()
String.prototype.deleteComma = function () {
    var string = this;
    while (string != (string = string.replace(/^(-?\d+)(\d{3})/, "$1,$2")));
    return string;