728x90
자바스크립트에서 숫자는 모두 Number 타입으로 Double로 취급된다.
비트 연산자 (Bitwise Operator) >>> 사용 시 Unsigned 32-bit Integer로 변환되기 때문에
다음과 같이 h를 Unsigned 32-bit Integer로 변환할 수 있다.
h >>>= 0;
Reference:
http://stackoverflow.com/questions/1908492/unsigned-integer-in-javascript
하지만 객체를 이용해서 Uint32Arrary 를 쓰는게 더 좋다.
'홍익인간 프로젝트 > 참조' 카테고리의 다른 글
Function overloading in Javascript - Best practices (0) | 2020.12.01 |
---|---|
F_CPU definition (0) | 2020.12.01 |
아두이노 헥사파일 위치와 해석 (0) | 2020.11.30 |
JavaScript 형식화 배열 (0) | 2020.11.29 |
JavaScript 를 통해 Binary Data 조작하기 (0) | 2020.11.29 |