Math.abs
Math.ceil
Math.floor
Returns the smallest integer greater than or equal to a given number.
Math.ceil(x)
아래 값을 입력하면 예제에 즉시 반영됩니다.
console
Math
console.log(Math.ceil(4.1)); // 5 console.log(Math.ceil(-4.9)); // -4