mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
console.log("Can you see this console message?");
|
||
|
|
console.warn("Can you see this second console message?");
|
||
|
|
|
||
|
|
var worker = new Worker("WorkerDebugger.console_childWorker.js");
|
||
|
|
|
||
|
|
setInterval(function() {
|
||
|
|
console.log("Random message.");
|
||
|
|
}, 200);
|