Computer >> Máy Tính >  >> Lập trình >> Javascript

hàm isNAN () trong JavaScript

Hàm isNaN () chấp nhận một giá trị và xác định xem giá trị đã cho có phải là một số hay không. Bạn cũng có thể gọi phương thức này bằng cách sử dụng đối tượng Number.

Cú pháp

Cú pháp của nó như sau

isNAN(5655);

Ví dụ

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result1 = parseFloat("Ef00A.D3");
      document.write(isNaN(result1));
      document.write('<br>');
      var result2 = Math.log("welcome");
      document.write(isNaN(result2));
      document.write('<br>');
      var result3 = Math.log(1254);
      document.write(isNaN(result3));
   </script>
</body>
</html>

Đầu ra

true
true
false