-
toFixed() 메소드개발 관련/JAVASCRIPT 2011. 10. 18. 15:15
소수점 자릿 수를 정해주는 메소드
var num = new Number(13.3714); document.write(num.toFixed()+"<br />"); document.write(num.toFixed(1)+"<br />"); document.write(num.toFixed(3)+"<br />"); document.write(num.toFixed(10));
결과값:
13
13.4
13.371
13.3714000000
참조: http://www.w3schools.com/jsref/jsref_tofixed.asp
'개발 관련 > JAVASCRIPT' 카테고리의 다른 글
Arguments() 객체 (0) 2011.10.28 isFinite() 함수 (0) 2011.10.18 scrollHeight / clientHeight / scrollTop (0) 2010.03.15 Modifying Document (0) 2009.11.13 setAttribute(name,value) (0) 2009.11.12