1'use strict'; 2 3const { Worker } = require('worker_threads'); 4const path = require('path'); 5new Worker(path.join(__dirname, 'fibonacci.js')); 6