Math.ceil(x) -- 숫자 인수보다 크거나 같은 가장 작은 정수(반올림 함수)를 반올림하여 반환합니다.
Ceil은 천장(ceiling)의 약자로 중국어로 '상한'을 뜻한다.
참조 URL: http://www.dreamdu.com/javascript/Math.ceil/
ceil 함수 구문
수학.ceil(x);
천장 기능 매개변수
x - 유형 번호의 수입니다.
ceil 함수 반환 값
x보다 크거나 같은 가장 작은 정수를 반환합니다.
천장 함수 예
document.write(Math.ceil(5.99));
document.write(Math.ceil(-5.99));
document.write(Math.ceil(1.01));
document.write(Math.ceil(-1.01));
결과:
6
-5
2
-1