컴공생의 다이어리

[js] 소수점 자리수 자르기(설정) - toFixed() 본문

Development/Node.js & JavaScript

[js] 소수점 자리수 자르기(설정) - toFixed()

컴공 K 2022. 8. 6. 00:01

JavaScript 소수점 자리수 자르기(설정) - toFixed()

toFixed 함수는 Number 객체의 메서드로 인수로 전달된 소수 자릿수로 반올림된 값문자열로 반환한다. 소수점 뒤에 나타날 자릿수는 0이상 100이하의 값을 사용하며 값을 넣지 않으면 0이 기본으로 사용된다. 

numObj.toFixed([소수 부분의 자리수]);

 

 

Example
let num = 1.23456789;
console.log(num); // 1.23456789
console.log(num.toFixed(2)); // 1.23
console.log(num.toFixed(3)); // 1.235

let num2 = num.toFixed(2) + 1;
console.log(num2); // 1.231
// num2가 2.23(1.23 + 1)이 아닌 이유는
// num.toFixed(2)가 문자열로 반환되고
// 이 문자열 뒤에 1을 이어 붙여 1.231이 되기 때문

 

 

 

 

 

 

 

https://squll1.tistory.com/entry/javascript-%EC%86%8C%EC%88%98%EC%A0%90-%EC%9E%90%EB%A6%AC%EC%88%98-%EC%A7%80%EC%A0%95%EC%9E%90%EB%A5%B4%EA%B8%B0

 

[javascript] 소수점 자리수 지정(자르기) toFixed()

toFixed()함수를 사용하면 됩니다. num=123.123456789 num.toFixed(3); -->결과값: 123.123 num.toFixed(5); -->결과값:123.12346  반올림됨

squll1.tistory.com

https://junghn.tistory.com/entry/JavaScript-%EC%86%8C%EC%88%98%EC%A0%90-%EC%B2%98%EB%A6%AC-%EB%B0%A9%EB%B2%95-toFixed-%EC%82%AC%EC%9A%A9%EB%B2%95%EA%B3%BC-%EC%98%88%EC%A0%9C

 

[JavaScript] 소수점 처리 방법/ toFixed 사용법과 예제

오늘은 자바스크립트에서 소수점을 처리하는 두 가지 방법 toPrecision와 toFixed 메서드 중 소수점의 자릿수를 제한할 수 있는 자바스크립트 메서드인 toFixed에 대해 정리해 보도록 하겠습니다. toPr

junghn.tistory.com

 

728x90
Comments