JavaScript 소수점 제어하기
페이지 정보
본문
1. 실수 소수점 이하 버리기, 정수로 만드는 함수; JavaScript float to int
parseInt() 라는 메서드(함수)를 사용하면, 실수의 소수점 이하를 제거할 수 있습니다.
반올림하지 않고 무조건 소수점 이하를 버립니다.
<script type="text/javascript">
// 실수를 정수로 변환
var n = 123.99999999999999;
document.write(parseInt(n) + '<br />');
// 출력 결과: 123
// 그런데 123.999999999999999 로 9가 한 개 더 붙으면 124 가 됩니다.
// 실수를 정수로 변환
document.write(parseInt(123.0000001) + '<br />');
// 출력 결과: 123
// 정수도 정수로 변환
document.write(parseInt(123) + '<br />');
// 출력 결과: 123
// 숫자가 아닌 문자열로 된 실수도, 정수로 변환
document.write(parseInt("666.4578") + '<br />');
// 출력 결과: 666
</script>
2. 자바스크립트 소수점 이하 자릿수 지정 방법; JavaScript toFixed
자바스크립트에서 소수점이 있는 실수를 출력할 때, 소수점 몇째자리까지 나타낼지 지정하는 방법입니다. ".toFixed" 메소드(함수)를 사용합니다. 다음 예제와 같습니다.
<script type="text/javascript">
var num = 3.14;
// 그대로 출력
document.write(num, '<br />');
// 출력 결과: 3.14
// 소수점 이하 6자리로 강제로 출력
document.write(num.toFixed(6), '<br />');
// 출력 결과: 3.140000
num = 3.1415926535897932384626433832795;
// 그대로 출력
document.write(num, '<br />');
// 출력 결과: 3.141592653589793
// 소수점 이하 3자리로 출력
document.write(num.toFixed(3), '<br />');
// 출력 결과 (반올림됨): 3.142
</script>
관련자료
http://mwultong.blogspot.com/2006/12/javascript-float-to-int.html
http://mwultong.blogspot.com/2007/08/javascript-tofixed.html
parseInt() 라는 메서드(함수)를 사용하면, 실수의 소수점 이하를 제거할 수 있습니다.
반올림하지 않고 무조건 소수점 이하를 버립니다.
<script type="text/javascript">
// 실수를 정수로 변환
var n = 123.99999999999999;
document.write(parseInt(n) + '<br />');
// 출력 결과: 123
// 그런데 123.999999999999999 로 9가 한 개 더 붙으면 124 가 됩니다.
// 실수를 정수로 변환
document.write(parseInt(123.0000001) + '<br />');
// 출력 결과: 123
// 정수도 정수로 변환
document.write(parseInt(123) + '<br />');
// 출력 결과: 123
// 숫자가 아닌 문자열로 된 실수도, 정수로 변환
document.write(parseInt("666.4578") + '<br />');
// 출력 결과: 666
</script>
2. 자바스크립트 소수점 이하 자릿수 지정 방법; JavaScript toFixed
자바스크립트에서 소수점이 있는 실수를 출력할 때, 소수점 몇째자리까지 나타낼지 지정하는 방법입니다. ".toFixed" 메소드(함수)를 사용합니다. 다음 예제와 같습니다.
<script type="text/javascript">
var num = 3.14;
// 그대로 출력
document.write(num, '<br />');
// 출력 결과: 3.14
// 소수점 이하 6자리로 강제로 출력
document.write(num.toFixed(6), '<br />');
// 출력 결과: 3.140000
num = 3.1415926535897932384626433832795;
// 그대로 출력
document.write(num, '<br />');
// 출력 결과: 3.141592653589793
// 소수점 이하 3자리로 출력
document.write(num.toFixed(3), '<br />');
// 출력 결과 (반올림됨): 3.142
</script>
관련자료
http://mwultong.blogspot.com/2006/12/javascript-float-to-int.html
http://mwultong.blogspot.com/2007/08/javascript-tofixed.html
댓글목록
등록된 댓글이 없습니다.