JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumJavaScript
What does this log?
code
const obj = { count: 0 };
worker.postMessage(obj);
obj.count = 99;
// inside the worker: self.onmessage = (e) => console.log(e.data.count);