// setting new final score
function settingFinalScore() {
newFinalScore = +prompt("Please set new Final Score", 100);
finalScore = newFinalScore;
alert(newFinalScore);
alert(finalScore);
}
document.querySelector(".aside__set-final-score").addEventListener("click", settingFinalScore);
Эта функция вызывается по клику на ссылку, вызывается форма, ввожу новое значение, алерты работают. После этого обе переменные undefined.
<!-- My Media start-->
<h2 align="center"><a name="My Media"> My Media </a></element></h2>
<article style="width:100%; display:flex; justfiy-content:space-beetwen; align-items:center; margin:0 auto";>
<table>
<tr>
<td>
<section>
<iframe src="https://www.youtube.com/embed/Q6_5InVJZ88" allowfullscreen frameborder="0" style="margin:30px"></iframe>
</section>
</td>
<td>
<section>
<iframe src="https://www.youtube.com/embed/Q6_5InVJZ88" allowfullscreen frameborder="0" style="margin:30px"></iframe>
</section>
</td>
<td>
<aside>
<iframe src="https://www.youtube.com/embed/Q6_5InVJZ88" allowfullscreen frameborder="0" style="margin:30px"></iframe>
</aside>
</td>
</tr>
</table>
</article>
<!-- My Media end-->