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

Hàm TypedArray.toString () trong JavaScript

Hàm toString () của đối tượng TypedArray trả về một chuỗi đại diện cho nội dung của mảng đã nhập.

Cú pháp

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

typedArray.toString();

Ví dụ

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var typedArray = new Int32Array([111, 56, 62, 40, 75, 36, 617, 2, 139, 827 ]);
      var result = typedArray.toString();
      document.write("Contents of the typed array: "+result);
   </script>
</body>
</html>

Đầu ra

Contents of the typed array: 111,56,62,40,75,36,617,2,139,827