Computer >> Computer tutorials >  >> Programming >> Javascript

DataView.byteOffset property in JavaScript


The byteOffset property of the DataView represents the offset of the current DataView.

Syntax

Its syntax is as follows

dataView.byteOffset();

Example

Try the following example.

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var arrayBuffer = new ArrayBuffer(114);
      var dataView = new DataView(arrayBuffer);
      document.write(dataView.buffer.byteLength);
   </script>
</body>
</html>

Output

114