Add the same iframe inside a div container like this:
<div id="yt-wrapper"></div>
<script>
const html = `
<iframe>.......</iframe>
`;
document.getElementById('yt-wrapper').innerHTML = html;
</script>
<div id="yt-wrapper"></div>
<script>
const html = `
<iframe>.......</iframe>
`;
document.getElementById('yt-wrapper').innerHTML = html;
</script>
<p></p> <div id="yt-wrapper-2"></div>
<script>
const html2 = `
<iframe>.......</iframe>
`;
document.getElementById('yt-wrapper-2').innerHTML = html2;
</script>