JSFiddle - React, Tailwind, and code Playground

by XTREME104

JavaScript

var worker = new Worker('my_task.js');
worker.onmessage = function(event) {
    console.log("Called back by the worker!\n");
};