JavaScript 中的 TypedArray.buffer 属性

htmljavascriptprogramming scripts

TypedArray 的 buffer 属性表示当前 TypedArray 的 ArrayBuffer。

语法

其语法如下

obj.buffer;

示例

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

输出

156

相关文章