반응형
[Javascript] 숫자 3자리 단위마다 콤마(comma) 찍기
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
function comma(num){
var len, point, str;
num = num + "";
point = num.length % 3 ;
len = num.length;
str = num.substring(0, point);
while (point < len) {
if (str != "") str += ",";
str += num.substring(point, point + 3);
point += 3;
}
return str;
}
반응형
'프로그래밍 > Script' 카테고리의 다른 글
How TO - Sort a Table (0) | 2021.06.01 |
---|---|
textarea 입력대로 화면에 출력하기, textarea를 줄별로 처리하기 (0) | 2021.05.10 |
[Nodejs] 이미지, CSS 경로 안잡힐때 (0) | 2021.05.04 |
nodeJS의 무중단 관리도구인 Forever (0) | 2021.04.09 |
three.js - JavaScript 3D library (0) | 2021.03.29 |