고객 센터
1670 - 4667
// function convertNumToStr(num) { // return new Intl.NumberFormat("ko-kr").format(num); // } // function convertStrToNum(str) { // var nagative = str.includes("-"); // if (!nagative) { // var res = parseInt(str.replaceAll(",", "")); // if (isNaN(res)) { // res = 0; // } // } else { // var res = str.replaceAll("-", ""); // res = parseInt(str.replaceAll(",", "")); // if (res > 0) { // res = -1 * res; // } // } // return res; // } function convertNumToStr(num) { if (typeof num !== "number" || isNaN(num)) { return num; } return new Intl.NumberFormat("ko-KR").format(num); } function convertStrToNum(str) { if (typeof str !== "string") { return str; } const cleaned = str.replaceAll(",", "").trim(); // 숫자 형식 아니면 그대로 반환 if (!/^[-]?\d+$/.test(cleaned)) { return str; } return parseInt(cleaned, 10); }