JavaScript | dataView.setInt8()
The dataView.setInt8() is an inbuilt function in dataView which is used to store a signed 8-bit integer at the specified location i.e, at byte offset from the start of the dataView.
Syntax:
dataView.setInt8(byteOffset)
Parameters: It has parameter byteOffset which is offset in byte i.e from the start of the view where to read the data.
Return value: This function does not return anything.
Code #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.setInt8(1, 56); document.write(dataview1.getInt8(1)); </script> |
Output:
56
Code #2:
This function does not accept float value; that is why it convert float value to integer value. It can be seen from the output of the below program it should give output as 3.14 (the value of PI) but this function convert this value to 3.
<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 value of PI at slot 1 dataview1.setInt8(1, Math.PI); document.write(dataview1.getInt8(1) + "<br>"); </script> |
Output:
3
Code #3:
When there is no data to be stored then it gives output as zero (0).
<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.setInt8(1); document.write(dataview1.getInt8(1) + "<br>"); </script> |
Output:
0
Recommended Posts:
- Introduction to JavaScript Course | Learn how to Build a task tracker using JavaScript
- JavaScript Course | Understanding Code Structure in JavaScript
- JavaScript Course | Conditional Operator in JavaScript
- JavaScript Course | Logical Operators in JavaScript
- JavaScript Course | Printing Hello World in JavaScript
- JavaScript Course | Data Types in JavaScript
- JavaScript Course | Operators in JavaScript
- JavaScript Course | Loops in JavaScript
- JavaScript Course | Functions 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?
- this in JavaScript
- Map.get( ) In JavaScript
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.



