요약(Summary)
소수의 자리수의 길이를 제한함
문법(Syntax)
1 | number.toFixed([digits]) |
인자(Parameters)
인자명 | 데이터형 | 필수/옵션 | 설명 |
---|---|---|---|
digits | number | 옵션 | 0~20까지의 정수, 생략하면 0과 같음 |
반환값(Return)
String
설명(Description)
소수의 자리수를 제한함.
toPrecision과 toFixed의 차이는 전자가 수의 길이를 제한한다면, 후자는 소수점의 자리수를 제한한다.
예제(Example)
1 2 3 4 5 6 7 8 9 | var num = new Number(1.232323); alert(num.toFixed()); // string, 1 alert(num.toFixed(1)); // string, 1.2 alert(num.toFixed(2)); // string, 1.23 alert(num.toFixed(3)); // string, 1.232 alert(num.toPrecision()); // string, 1.232323 alert(num.toPrecision(1)); // string, 1 alert(num.toPrecision(10)); // string, 1.232323000 |