You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prepare a worker that will execute code similar to:
conststorage=[];consttwoMegabytes=1024*1024*2;while(true){constarray=newUint8Array(twoMegabytes);for(letii=0;ii<twoMegabytes;ii+=4096){array[ii]=1;// we have to put something in the array to flush to real memory}storage.push(array);console.log('Wasted '+(storage.length*2)+'MB');}
- and see what will happen :-)
The text was updated successfully, but these errors were encountered:
prepare a worker that will execute code similar to:
- and see what will happen :-)
The text was updated successfully, but these errors were encountered: