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

Thuộc tính TypedArray.byteLength trong JavaScript

byteLength thuộc tính của TypedArray đối tượng đại diện cho độ dài của TypedArray (tính bằng byte) của nó.

Cú pháp

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

typedArray.byteLength();

Ví dụ

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var buffer = new ArrayBuffer(156);
      var float32 = new Float32Array(buffer);
      document.write(float32.byteLength);
   </script>
</body>
</html>

Đầu ra

156