본문 바로가기
JavaScript

JavaScript - Math.ceil / Math.floor / Math.round

by 새발개발JA 2021. 4. 7.
반응형

소수점을 처리하는 방법 중 가장 많이 사용되는 올림, 버림, 반올림의 간단한 사용방법은 아래와 같다.

 

- Math.ceil() : 소수점 올림, 정수 반환

Math.ceil(.95);    // 1
Math.ceil(4);      // 4
Math.ceil(7.004);  // 8
Math.ceil(-0.95);  // -0
Math.ceil(-4);     // -4
Math.ceil(-7.004); // -7

 

- Math.floor() : 소수점 버림, 정수 반환

Math.floor( 45.95); //  45
Math.floor( 45.05); //  45
Math.floor(  4   ); //   4
Math.floor(-45.05); // -46
Math.floor(-45.95); // -46

 

- Math.round() : 소수점 반올림, 정수 반환

Math.round( 20.49); //  20
Math.round( 20.5 ); //  21
Math.round( 42   ); //  42
Math.round(-20.5 ); // -20
Math.round(-20.51); // -21
반응형

댓글