console.log(Math.ceil(5.1));
console.log(Math.ceil(5.6));
올림
console.log(Math.floor(5.1));
console.log(Math.floor(5.6));
내림
console.log(Math.round(5.1));
console.log(Math.round(5.6));
반올림
console.log((1231.12312412).toFixed(2));
소수점 둘째자리 까지만. 0도 가능.
기하학 그림 그릴 때 필요할 수도 있음..
'프론트엔드-코드 > Javascript' 카테고리의 다른 글
typeof (0) | 2023.09.15 |
---|---|
isNaN() 숫자인지 아닌지 여부 (0) | 2023.09.15 |
toString()으로 여러 진법으로 변환 (0) | 2023.09.14 |
Symbol (0) | 2023.09.14 |
객체 메소드 (객체 <-> 배열 변환 등등등) (0) | 2023.09.13 |