728x90
반응형
소수점 자리수 제거
const number1 = 1.34313
const number2 = 1.35756
console.log(number1.toFixed(2)) // 1.34
console.log(number2.toFixed(4)) // 1.3576
Number.prototype.toFixed() 함수를 사용할 경우, 기본적으로 반올림이 원칙.
728x90
반응형
'Front > JS & jQuery' 카테고리의 다른 글
[jQuery] .forEach() , .each() 반복문 (0) | 2022.05.25 |
---|---|
[JS] 빈 배열로 초기화하기 (0) | 2022.05.23 |
[JS] 숫자를 문자로 변환하기 (0) | 2022.05.21 |
[JS] 거듭제곱 (0) | 2022.05.20 |
[JS] 배열 합치기 (0) | 2022.05.19 |