출처 : http://stackoverflow.com/questions/2901102/how-to-print-number-with-commas-as-thousands-separators-in-javascript
function numberWithCommas(n) {
var parts=n.toString().split(".");
return parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ",") + (parts[1] ? "." + parts[1] : "");
}
출처 URL 페이지 상단부터 쭉~ 내려 오다보면, 위 펑션이 나오는데, 길어진 펑션이 이렇게 짧게 되었다.
세상은 넓고, 능력자는 많다.
'tech > javascript' 카테고리의 다른 글
JavaScript setTimeout (0) | 2024.07.02 |
---|---|
그누보드 어드민 페이지에서 메뉴 오버-> 서브 메뉴가 GNB 좌측 아래에 보이는 증상 (0) | 2012.11.27 |
input 박스 키워드 (0) | 2012.10.05 |
그누보드 어드민 페이지_GNB에 마우스 오버 시 서브 메뉴 정상적이지 않는 것 (0) | 2012.09.27 |
prototype 프레임웍과 jquery를 같이 쓰기 (0) | 2012.03.16 |