1 2 3 4 5 6 7 8 9 10 11
var count = 0; function timer() { var n = ++count; console.log("WORKER SAYS HELLO! " + n); } setInterval(timer, 1000); self.onmessage = () => { console.log("hi"); };