JavaScript의 숫자 숫자 객체

숫자 수치 객체

숫자 변수는 숫자 객체(숫자 객체)입니다.



toFixed()

  • 기능: 값 변경 지정된 소수 자릿수를 유지하면서 문자열로 변환하고 반올림합니다.

  • 구문: numObj.toFixed(n)

  • 매개변수: n은 유지할 소수점 이하 자릿수입니다.

  • 예:

var a = 123.9878;

a = a.toFixed(2); // a = "123.99"

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>php.cn</title>
        <script>
            var x=134.456756;
            document.write(x.toFixed(3));
        </script>
    </head>
    <body>
    </body>
</html>

예: 원의 면적 구하기

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>php.cn</title>
        <script>
            //求圆的面积
            function getArea(r){
                var s=Math.PI*r*r;
                s=s.toFixed(4);
                document.write("半径为:"+r+"的圆,面积为:"+s+"<br/>");
            }
            getArea(2);
            getArea(4);
            getArea(5);
        </script>
    </head>
    <body>
    </body>
</html>


지속적인 학습
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> var x=134.456756; document.write(x.toFixed(3)); </script> </head> <body> </body> </html>
  • 코스 추천
  • 코스웨어 다운로드
현재 코스웨어를 다운로드할 수 없습니다. 현재 직원들이 정리하고 있습니다. 앞으로도 본 강좌에 많은 관심 부탁드립니다~