JavaScript숫자toFixed

toFixed숫자

소수점 자릿수를 고정한 문자열을 반환합니다.

문법

(number).toFixed(digits)

예제

아래 값을 입력하면 예제에 즉시 반영됩니다.

const
console
toFixed
const pi = 3.14159265;
console.log(pi.toFixed(2));   // "3.14"
console.log(pi.toFixed(4));   // "3.1416"