// Create new link elementconst link = document.createElement('link');link.setAttribute('rel', 'stylesheet');link.setAttribute('href', '/path/to/js/file.css'); // Append to the `head` elementdocument.head.appendChild(link);