[Javascript] 숫자형 메소드(toFixed, toString)

lilclown·2022년 6월 17일
0

Javascript

목록 보기
9/42
post-thumbnail
post-custom-banner

숫자형 메소드(toFixed, toString)


toFixed()

  • 소수점 자리를 지정해주고 문자형으로 바뀐다
const PI = 3.14159265;

console.log(PI.toFixed(2));
console.log(PI.toFixed(5));
console.log(typeof PI.toFixed(2));
console.log(typeof Number(PI.toFixed(2)));

/* 
출력
---
3.14
3.14159
string
number
*/

toString()

  • 2~36 범위내의 진수로 바꿔주고 문자형으로 바뀐다.
const num = 255;

console.log(num.toString(2));
console.log(num.toString(8));
console.log(num.toString(16));
console.log(typeof num.toString(2));
console.log(typeof Number(num.toString(2)));

/*
출력
---
11111111
377
ff
string
number
*/



Tomorrow better than today, Laugh at myself

- 출처 -

profile
Tomorrow better than today, Laugh at myself
post-custom-banner

0개의 댓글