Transferable objects are JavaScript objects that can be transferred from one context to another without copying the underlying data.
I currently have this code to create a Web Worker: w = new Worker("webwork.js"); w.onmessage = function(event) { alert(…
javascript web-worker transferable