일반 소숫점을 포함한 반올림

황제낙엽 2008.12.11 13:34 조회 수 : 62 추천:105

sitelink1 http://blog.naver.com/pluggers/150003969510 
sitelink2  
sitelink3  
sitelink4 http://1 
extra_vars4 ko 
extra_vars5  
extra_vars6 sitelink1 

 

Method Summary
<static> Number fncRoundPrecision(<Number> val, <Number> precision)
           입력된 숫자값을 지정된 소숫점 자릿수로 Round해서 값을 리턴한다.

ex) fncRoundPrecision(300.12345678,3)

Result ) 300.123

 


END ADDITIONAL ATTRIBUTES ========= CONSTRUCTOR DETAIL END ======== ============ METHOD DETAIL START ==========

Method Detail

One single method detail entry

fncRoundPrecision

% wrong tag % Number fncRoundPrecision( val, precision) % wrong tag %

  • 입력된 숫자값을 지정된 소숫점 자릿수로 Round해서 값을 리턴한다.

    ex) fncRoundPrecision(300.12345678,3)

    Result ) 300.123

METHOD PARAMETERS START

  • Parameters:
    • val - 반올림할 값
    • precision - 소숫점 자리수

METHOD PARAMETERS END

  • Returns:
    • 지정한 소숫점 자리수에 따른 반올림 값

ADDITIONAL ATTRIBUTES START

  • 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객체의 확장을 통한 펑션 정의..

 

 

번호 제목 글쓴이 날짜 조회 수
77 [펌] 아사페릴의 사생활 - __proto__ 와 construct 와 prototype 황제낙엽 2009.04.02 23
76 [펌] 아사페릴의 사생활 - prototype과 __proto__ 와 constructor 황제낙엽 2009.04.02 41
75 [펌] 아사페릴의 사생활 - __proto__ 와 prototype에 대해.. 황제낙엽 2009.04.02 15
74 [펌] 아사페릴의 사생활 - Javascript의 클래스에 관한 이야기 황제낙엽 2009.04.02 17
73 [펌] 아사페릴의 사생활 - Javascript의 constructor 와 prototype 황제낙엽 2009.04.02 156
72 [펌] prototype (2) 황제낙엽 2009.04.02 9
71 [펌] prototype (1) 황제낙엽 2009.04.02 12
70 unshift() Method 황제낙엽 2009.03.02 287
69 javascript replaceall의 방법에 따른 처리 속도 비교 황제낙엽 2009.02.11 97
68 파이어폭스로 스크립트 디버깅하기 황제낙엽 2009.01.14 22
67 숫자 여부와 자리수를 체크 하는 예제 황제낙엽 2009.01.12 5265
66 익스플로러용 스크립트 디버거 (Script Debugger for Windows NT 4.0 and Later) 황제낙엽 2008.12.11 176
» 소숫점을 포함한 반올림 황제낙엽 2008.12.11 62
64 int * float 연산 오류 file 황제낙엽 2008.12.11 95
63 JavaScript Form Validation file 황제낙엽 2008.11.24 186
62 정규식 정리 황제낙엽 2008.11.24 252
61 setTimeout() / setInterval() 메소드 황제낙엽 2008.11.05 111
60 [key:value] 형태로 object를 저장할 수 있는 Static영역의 해쉬맵 클래스 (Map) 황제낙엽 2008.11.04 46
59 String xml 파싱 황제낙엽 2008.11.03 23
58 innerHTML 황제낙엽 2008.11.03 93