// 정수일 경우 두 메소드간 차이는 없다 const number1 = "12.34"; const number2 = "12.98"; Math.floor(number1) // 12 Math.floor(number2) // 12 parseInt(number1) //12 parseInt(number2) //12 // ========================================== // 음수일경우 두 메소드간 차이 //Math.floor 는 음수일때 내림 //parseInt 는 소수점을 버림 처리 한다 const number1 = "-12.34"; const number2 = "-12.98"; Math.floor(number1) // -12 Math.floor(number2) // -13 parseInt(number1) //-12 parseInt(number2) //-12