📅  最后修改于: 2020-10-25 05:47:35             🧑  作者: Mango
JavaScript DataView.getInt16()是dataView中的内置方法。用于在指定位置获取带符号的16位整数(短)数字。
注意:16位整数值的范围从0到65,535(无符号),从?32,768到32,767(有符号整数)。
dataview.getInt16(byteOffset)
byteoffset:从读取数据的视图开始处的偏移量(以字节为单位)。
此方法返回一个带符号的16位整数。
Chrome | 9 |
Safari | 5.1 |
Firefox | 15 |
Opera | 12.1 |
输出:
If we give a float value then output will be an Integer
3
输出:
If there is no data to be stored, then Output will Be:
0
输出:
PI value will be
3
输出:
If we provide Integer value then output will be.
7