Method Summary | |
<static> Number | fncRoundPrecision(<Number> val, <Number> precision) 입력된 숫자값을 지정된 소숫점 자릿수로 Round해서 값을 리턴한다. ex) fncRoundPrecision(300.12345678,3) Result ) 300.123 |
Method Detail |
fncRoundPrecision
<static> Number fncRoundPrecision(<Number> val, <Number> precision)
- 입력된 숫자값을 지정된 소숫점 자릿수로 Round해서 값을 리턴한다.
ex) fncRoundPrecision(300.12345678,3)
Result ) 300.123
- Parameters:
val
- 반올림할 값precision
- 소숫점 자리수- Returns:
- 지정한 소숫점 자리수에 따른 반올림 값
- Version: 1.0
Author: Lee Jeong Hak
- <html>
<head>
<title>Untitled</title>
<script language="JavaScript">
- window.onload = function(){
alert(Math.roundPrecision(300.12345678,3));
alert(fncRoundPrecision(300.12345678,3));
}
- /**
* 입력된 숫자값을 지정된 소숫점 자릿수로 Round해서 값을 리턴한다.<p>
* ex) fncRoundPrecision(300.12345678,3) <p>
* Result ) 300.123
* @param {Number} val 반올림할 값
* @param {Number} precision 소숫점 자리수
* @return 지정한 소숫점 자리수에 따른 반올림 값
* @type Number
* @author Lee Jeong Hak
* @version 1.0
*/
function fncRoundPrecision(val, precision){
var p = Math.pow(10, precision);
return Math.round(val * p) / p;
}
- /**
* 지정된 소숫점 자릿수로 Round해서 값을 리턴한다.
* Math Object에 추가 선언
* @param {Number} val 반올림할 값
* @param {Number} precision 소숫점 자리수
* @return 지정한 소숫점 자리수에 따른 반올림 값
* @type Number
* @author Lee Jeong Hak
* @version 1.0
*/
Math.roundPrecision = function(val, precision) {
var p = this.pow(10, precision);
return this.round(val * p) / p;
}
</script>
</head>
<body>
</body>
</html>
API는 JSDoc를 통해서 생성했다.
2번째 펑션은 Math객체의 확장을 통한 펑션 정의..
'업무관련 > JavaScript' 카테고리의 다른 글
Handlebars - registerHelper 모음 (0) | 2020.06.26 |
---|---|
Javascript 특수문자,공백,숫자등 Text 체크 (0) | 2013.12.02 |
ALTER TABLE (0) | 2013.07.25 |