Node.js - Worker Threads
What will be logged to the console after executing this code?
const sab = new SharedArrayBuffer(8); const uint16 = new Uint16Array(sab); uint16[1] = 100; console.log(uint16[1]);
