숫자 3자리 단위로 comma 추가 - 정규식 활용2016년 12월 21일 · 약 1분Eunkwang ShinOwner소스 // functionfunction comma(num) { return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");}// prototypeNumber.prototype.format = function () { return this.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");}; 설명 첫번째는 함수 호출방식이고, 두번째는 NumberValue.format(); 으로 호출하면 된다.