하루하나
function addCommas(num) { return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); } addCommas("1000") => 1,000