how to display a variable value in html code example
Example: html use js variable as text
<h1>"My number: " <span id="myText"></span></h1>
<script>
//You can use an IIFE (Immediately Invoked Function Expression)
(() => {
var number = "123";
document.getElementById("myText").innerHTML = number;
})();
</script>