The ArrayBuffer.isView() is an inbuilt function in JavaScript which is used to check whether the given argument for the function is typed array or not.
List of typed array:
Syntax:
ArrayBuffer.isView(p)
Parameters: It accepts a parameter either in the form of typed array or something else.
Return Values:It returns true if the parameter is typed array otherwise return false.
Code #1:
<script> // Creation of ArrayBuffer having a size in bytes var buffer = new ArrayBuffer(12); // Use of ArrayBuffer.isView function A = ArrayBuffer.isView(new Int32Array()) document.write(A); </script> |
Output:
true
Note: Here output is true because Int32Array is a typed array.
Code #2:
<script> // Creation of ArrayBuffer having size in bytes var buffer = new ArrayBuffer(12); // Use of ArrayBuffer.isView function A = ArrayBuffer.isView(); B = ArrayBuffer.isView(null); C = ArrayBuffer.isView(undefined); // Printing the result document.write(A + '<br>'); document.write(B + '<br>'); document.write(C + '<br>'); </script> |
Output:
false false false
Note:Here output is false because above arguments are not typed array.
Recommended Posts:
- JavaScript Course | Understanding Code Structure in JavaScript
- Introduction to JavaScript Course | Learn how to Build a task tracker using JavaScript
- JavaScript Course | Loops in JavaScript
- JavaScript Course | Data Types in JavaScript
- JavaScript Course | Printing Hello World in JavaScript
- JavaScript Course | Logical Operators in JavaScript
- JavaScript Course | What is JavaScript ?
- JavaScript Course | Operators in JavaScript
- JavaScript Course | Functions in JavaScript
- JavaScript Course | Variables in JavaScript
- JavaScript Course | Conditional Operator 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 ?
- How to compare two JavaScript array objects using jQuery/JavaScript ?
- ES2015: Latest version of JavaScript
- Understanding variable scopes in JavaScript
- Must use JavaScript Array Functions – Part 3
- JavaScript : The Awesome Script
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.


