본문 바로가기
웹 개발 이야기/js, jquery

[JS] 숫자에 콤마 붙이기

by Gommin 2023. 3. 8.
function addComma(x) {
    var idx = 0;
    while(true){
        idx = x.indexOf(",");
        x = x.replace(",","");
        if(idx<0){break;}
    }
    //console.log(x);
    return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}

댓글