javascript의 Math함수에는 올림 내림을 해주는 메서드들이 있씁니다. 이 글에서는 round, ceil, floor 이렇게 3가지의 방법에 대하여 알아볼까요 1. round round 메서드는 반올림을 합니다. 코드를 통하여 한번 알아보겠습니다 const float = 11.4567; 1. console.log(Math.round(float)); 2. console.log(Math.round(float * 10) / 10); 3. console.log(Math.round(float * 100) / 100); 4. console.log(Math.round(float / 10) * 10); 5. console.log(Math.round(float / 100) * 100); // 1번의 결과는 11 ..