0
0

More than 1 year has passed since last update.

JavaScriptでバイト配列を扱う

Last updated at Posted at 2022-11-08
import { Buffer } from 'buffer';

let arr8 = (new Uint8Array([0, 1, 2, 3]));

let buffer = Buffer.from(arr8);

console.log(buffer.readUInt16BE(0));
console.log(buffer.readUInt16BE(2));
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0