Korrekte Verwendung von JavaScript zum Schreiben mehrerer Meta-Tags
<p>Hallo, ich bin sehr neu bei JS. Ich würde gerne nach meinem Code fragen. Wie kann ich ihn richtig schreiben?</p>
<pre class="brush:php;toolbar:false;">function impScript(scriptURL){
let headTitle = document.querySelector('head');
let setProperty = document.createElement('script');
setProperty.setAttribute('href',scriptURL);
headTitle.appendChild(setProperty);
}
const metaScript = ['ar.js','ar2.js']
impScript(metaScript);</pre>
<p>Der Code funktioniert, aber das Ergebnis ist 2script href="ar.js,ar2.js"></script></p>
<p>Ich möchte das tun</p>
<pre class="brush:php;toolbar:false;"><script href="ar.js"></script>
<script href="ar2.js"></script</pre>
<p>Was soll ich tun? Ihre Antwort wird hilfreich sein, danke. </p>