소수점 썸네일형 리스트형 [javascript]소수점 올림,버림,반올림 올림: Math.ceil();버림: Math.floor();반올림: Math.round(); Math.ceil(자리수);Math.floor(자리수);Math.round(자리수); 예)var number=123.643 Math.ceil(number); -->124Math.floor(number); -->123Math.round(number); -->124 소수점 몇째자리에서 올리거나 버리거나 반올림해서 표현할 일이 있는데 이걸 응용하자면 소수점 에서 반올림 하는건 toFixed()를 사용하면 됩니다. 다시 돌아와 이걸 응용해서 표현 해보면 소수점 셋째자리에서 반올림해서 둘째자리까지 나타낼려고 합니다. Math.floor(number*100)/100 -->123.64 더보기 [javascript] 소수점 자리수 지정(자르기) toFixed() toFixed()함수를 사용하면 됩니다. num=123.123456789 num.toFixed(3);-->결과값: 123.123 num.toFixed(5);-->결과값:123.12346 반올림됨 더보기 이전 1 다음