[js] 숫자를 반올림된 문자열로 반환 - toFixed() toPrecision()

hyein·2023년 10월 27일
0

TIL

목록 보기
34/34
post-thumbnail

toFixed()

Number 인스턴스의 소수 자리수를 문자열로 반환한다.

const num = 3.14159265
num.toFixed();           // 3   
num.toFixed(2);           // 3.14
num.toFixed(4);           // 3.1416
3.14159265.toFixed(6);   // 3.141593

toPrecision()

Number 인스턴스의 가수와 소수를 합친 자리수(즉, 앞자리부터)를 문자열로 반환한다.

const num = 3.14159265
num.toPrecision();           // 3.14159265  
num.toPrecision(2);           // 3.1
num.toPrecision(4);           // 3.142
3.14159265.toPrecision(6);   // 3.14159
profile
As I start to move towards the goal, the goal will start to move towards me.

0개의 댓글