Node.js - Worker Threads
Given the code below, what will be the output?
const sab = new SharedArrayBuffer(4); const int32 = new Int32Array(sab); int32[0] = 10; Atomics.add(int32, 0, 5); console.log(int32[0]);
