숫자로된 문자를 3자리 단위로 자릿수를 표시하는 함수
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
숫자로된 문자를 3자리 단위로 자릿수를 표시하는 함수
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}