JavaScript 中的 SharedArrayBuffer.byteLength 属性
SharedArrayBuffer 的 byteLength 属性返回一个无符号 32 位整数,用于指定 SharedArrayBuffer 的大小/长度。
语法
其语法如下
sharedArrayBuffer.byteLength
示例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var sharedArrayBuffer = new SharedArrayBuffer(8); var result = sharedArrayBuffer.byteLength; document.write("length of the shared array buffer is: " + result); </script> </body> </html>
输出
length of the shared array buffer is: 8
广告