📅  最后修改于: 2020-10-25 05:46:21             🧑  作者: Mango
JavaScript DataView.getInt8()是dataView中的内置方法。它用于在指定位置获取带符号的8位整数(字节)数字。
dataview.getInt8(byteOffset)
byteoffset:从读取数据的视图开始处的偏移量(以字节为单位)。
此方法返回一个带符号的8位整数。
Chrome | 9 |
Safari | 5.1 |
Firefox | 15 |
Opera | 12.1 |
输出:
If we give a float value, the output will be an Integer
6
输出:
If there is no data to be stored, then Output will Be:
0
输出:
PI value
3
输出:
If we give an Integer value then Output will be Integer
19