JavaScript | dataView.getInt16()
The dataView.getInt16() is an inbuilt function in dataView which is used to get a 16-bit integer at the specified location i.e, at byte offset from the start of the dataView. The range of 16-bit integer value is from 0 and 65,535 for unsigned and from ?32,768 to 32,767 for signed integer value.
Syntax:
dataview.getInt16(byteOffset)
Parameters: It has parameter byteOffset which is offset in byte and it says where to read the data from the beginning(start) of the view .
Return value: It returns 16-bit signed integer value.
Example 1:
<script> // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view var dataview1 = new DataView(buffer, 0, 10); // put the data 56 at slot 1 dataview1.setInt16(1, 56); document.write(dataview1.getInt16(1) + "<br>" ); </script> |
Output:
56
Example 2:
Here as it can be seen that this function do not take float value when this float value is given to this function then it convert that value to integer value.
<script> // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view with slot from o to 10 var dataview1 = new DataView(buffer, 0, 10); // put the 4.5 at slot 1 dataview1.setInt16(1, 4.5); document.write(dataview1.getInt16(1) + "<br>" ); </script> |
Output:
4
Example 3:
When there is no data to be stored, then it returns NaN i.e, not a number.
<script> // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view var dataview1 = new DataView(buffer, 0, 10); // putting no data at slot 1 dataview1.setInt16(1); document.write(dataview1.getInt16(1) + "<br>" ); </script> |
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 | Logical Operators in JavaScript
- JavaScript Course | Data Types in JavaScript
- JavaScript Course | JavaScript Prompt Example
- JavaScript Course | Loops in JavaScript
- JavaScript Course | Variables in JavaScript
- JavaScript Course | Functions in JavaScript
- JavaScript Course | Objects in JavaScript
- JavaScript Course | Operators in JavaScript
- 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.