Rianshin

[JavaScript] 소수점처리 Math 본문

Develop/Javascript

[JavaScript] 소수점처리 Math

RianShin 2020. 11. 11. 16:02
728x90
반응형
SMALL

- Math.ceil() : 소수점 올림, 정수 반환

- Math.floor() : 소수점 버림, 정수반환

- Math.round() : 소수점반올림, 정수 반환

 

-toFixed(올림할자리숫자) : 소숫점길이만큼 반올림 하여 반환

-toExponential(올림할자리숫자) : 지수표기법반환

 

var num = 99.111;
Math.ceil(num);  //100 출력
Math.floor(num); // 99 출력
Math.round(num); // 100 출력

num.toFixed(0); // 99 출력
num.toFixed(2); // 99.1 출력

num.toExponential(2); //9.91e+1 출력
728x90
반응형
LIST
Comments