The buffer property of the TypedArray represents the ArrayBuffer of the current TypedArray.
Syntax
Its Syntax is as follows
obj.buffer;
Example
<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.buffer.byteLength); </script> </body> </html>
Output
156