Programming/JAVASCRIPT
자바스크립트 Javascript 올림 반올림 버림
Beat.
2022. 7. 14. 18:18
자바스크립트 Javascript 올림 반올림 버림
올림
Math.ceil(num)반올림
Math.round(num)내림
Math.floor(num)
// 올림
const ceil1 = Math.ceil(123) // 123
const ceil2 = Math.ceil(123.4) // 124
const ceil3 = Math.ceil(123.45) // 124
// 반올림
const round1 = Math.round(123) // 123
const round2 = Math.round(123.4) // 123
const round3 = Math.round(123.5) // 124
// 버림
const floor1 = Math.floor(123) // 123
const floor2 = Math.floor(123.4) // 123
const floor3 = Math.floor(123.45) // 123
읽어주셔서 감사합니다.