The buffer property of the DataView represents the ArrayBuffer of the current DataView.
Syntax
Its syntax is as follows
dataView.buffer;
Example
Try the following example.
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var arrayBuffer = new ArrayBuffer(156); var dataView = new DataView(arrayBuffer); document.write(dataView.buffer.byteLength); </script> </body> </html>
Output
156