Math 관련 메소드
// 버림 const result = Math.floor(NUMBER); // 올림 const result = Math.ceil(NUMBER); // 반올림 const result = Math.round(NUMBER); // 절대값 => 무조건 양수 const result = Math.abs(NUMBER); // 최대값, 최소값 const max = Math.max(1, 2, 3, 4, 5); const max = Math.max(...ary); const min = Math.min(1, 2, 3, 4, 5); const min = Math.min(...ary);