[javascript] toLocaleString 로 천단위 comma(,) 찍기

dev stefanCho·2021년 4월 23일
0

javascript

목록 보기
1/26

목적

javascript에서 천 단위마다 , 를 찍는 방법을 찾아보았다.

방법

숫자 길이로 replace하는 방법도 있고, 여러가지가 있지만 toLocaleString이 가장 편한 방법인 것 같다.
본래 용도는 이것이 아니지만, paramter값이 비어있을 때 default동작이 이렇다고 MDN 에 나와있다.

In basic use without specifying a locale, a formatted string in the default locale and with default options is returned.

결과

let number = 123456789;
number.toLocaleString() // "123,456,789"
profile
Front-end Developer

0개의 댓글