byteLength thuộc tính của DataView đại diện cho độ dài của Chế độ xem dữ liệu hiện tại.
Cú pháp
Cú pháp của nó như sau
dataView.byteLength();
Ví dụ
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var arrayBuffer = new ArrayBuffer(8); var dataView = new DataView(arrayBuffer); document.write(dataView.byteLength); </script> </body> </html>
Đầu ra
8