📅  最后修改于: 2020-10-25 05:48:45             🧑  作者: Mango
JavaScript DataView.getInt32()是dataView中的内置方法。它用于在指定位置获取带符号的32位整数(长)数字。
注意:对于有符号整数值,32位整数值的范围是从2,147,483,648到2,147,483,647。
dataview.getInt32(byteOffset)
byteoffset:从读取数据的视图开始处的偏移量(以字节为单位)。
此方法返回一个带符号的32位整数。
Chrome | 9 |
Safari | 5.1 |
Firefox | 15 |
Opera | 12.1 |
输出:
If we give a float value, the output will be an Integer
23
输出:
If there is no data to be stored, Output will Be :
0
输出:
Convert the PI value 3.14 to 3
3
输出:
If we give an Integer value, Output will be Integer
7