숫자를 문자로 변환 자바스크립트 썸네일형 리스트형 자바스크립트 문자형을 숫자형으로 변환 console.log(typeof account_mileage); // Result : string console.log(typeof mileage_minus_price); // Result : string account_mileage = Number(account_mileage); mileage_minus_price = Number(mileage_minus_price); console.log(typeof account_mileage); // Result : bnum console.log(typeof mileage_minus_price); // Result : bnum 숫자형으로 변환된 변수로 검증에 사용할 수 있다. 더보기 이전 1 다음