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

Hàm Number.valueOf () trong JavaScript

Hàm valueOf () chấp nhận một đối tượng Number và trả về số (nguyên thủy) được bao bọc bởi đối tượng đã cho.

Cú pháp

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

num.valueOf(num);

Ví dụ

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var num = 215;
      result = num.toString(16);
      document.write("Result: " + result);
   </script>
</body>
</html>

Đầu ra

Result: d7

Ví dụ

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var num = 215;
      result = num.toString(16);
      document.write("Result: " + result);
      document.write("<br>");
      document.write("Result: " + num.valueOf(0));
      document.write("<br>");
      document.write("Result: " + num.valueOf(-16));
      document.write("<br>");
      document.write("Result: " + num.valueOf());
      document.write("<br>");
      var dat = 0/0;
      document.write("Result: " + dat.valueOf(16));
   </script>
</body>
</html>

Đầu ra

Result: d7
Result: 215
Result: 215
Result: 215
Result: NaN