untitled notebook

node v14.20.1
version: 1.1.0
endpointsharetweet
const input = Uint8Array.from([1,2,3,4]); const copy = Buffer.from(input); const reference = Buffer.from(input.buffer); reference[0] = 5; console.log(input); // changed :( console.log(copy); // copy didn't console.log(reference);
Loading…

no comments

    sign in to comment