
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
Advertisements