문자열에 천 단위 구분 기호(,)를 추가하는 방법 const PriceStr = "134000000";const Price = Number(PriceStr).toLocaleString(); >> 134,000,000 IT/JavaScript 2024.09.11