JavaScript | arrayBuffer.byteLength
The arrayBuffer.byteLength is a property in JavaScript which gives the length of an arrayBuffer in bytes.
Syntax:
ArrayBuffer.byteLength
Parameters: It doesn’t accept any parameter because arrayBuffer.byteLength is a property not a function.
Return Value: It returns the length of an arrayBuffer in bytes.
Code #1:
<script> // Creation of arrayBuffer of size 5 bytes var A = new ArrayBuffer(5); // Using property byteLength var bytes1 = A.byteLength; // Printing the lengths of the ArrayBuffer document.write(bytes1); </script> |
chevron_right
filter_none
Output:
5
If length of arrayBuffer is given in fraction, it returns length in whole number and when length is given in the form of string then it returns length of zero (0).
Code #1:
<script> // Creation of arrayBuffer of sizes 5.6 var A = new ArrayBuffer(5.6); // Using property byteLength var bytes1 = A.byteLength; // Printing the length of the ArrayBuffer document.write(bytes1); </script> |
chevron_right
filter_none
Output:
5
Code #2:
<script> // Creation of arrayBuffers of sizes "a" bytes var A = new ArrayBuffer( "a" ); // Using property byteLength var bytes1 = A.byteLength; // Printing the length of the ArrayBuffer document.write(bytes1); </script> |
chevron_right
filter_none
Output:
0
Recommended Posts:
- Introduction to JavaScript Course | Learn how to Build a task tracker using JavaScript
- How to compare two JavaScript array objects using jQuery/JavaScript ?
- JavaScript Course | Understanding Code Structure in JavaScript
- JavaScript Course | Conditional Operator in JavaScript
- JavaScript Course | Printing Hello World in JavaScript
- JavaScript Course | Data Types in JavaScript
- JavaScript Course | Logical Operators in JavaScript
- JavaScript Course | Loops in JavaScript
- JavaScript Course | Functions in JavaScript
- JavaScript Course | Operators in JavaScript
- JavaScript Course | Variables in JavaScript
- JavaScript Course | Objects in JavaScript
- JavaScript Course | JavaScript Prompt Example
- JavaScript vs Python : Can Python Overtop JavaScript by 2020?
- How to include a JavaScript file in another JavaScript file ?
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.