Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript의 parseFloat() 함수

<시간/>

parseFloat() 함수는 두 개의 매개변수를 받아들입니다. 하나는 숫자를 나타내는 문자열이고 다른 하나는 기수를 나타내는 숫자이며 주어진 기수의 정수를 반환합니다.

구문

구문은 다음과 같습니다.

num.parseFloat('4524', 8);

예시

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result1 = parseFloat(Math.PI);
      document.write("Result: "+result1);
      document.write('<br>');
      var result2 = parseFloat("245.12@welcome");
      document.write("Result: "+result2);
      document.write('<br>');
      var result3 = parseFloat("11111100.010");
      document.write("Result: "+result3);
   </script>
</body>
</html>

출력

Result: 3.141592653589793
Result: 245.12
Result: 11111100.01