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"