variable in text javascript code example

Example 1: 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>

Example 2: how to put variable in string javascript

var myInt = 1
console.log(`my variable is ${myInt}`);
// my variable is 1

Example 3: how to change a variables value in javascript

var variable = 10;

function start() {
  variable = 20;
}
console.log(variable + 20);

// Answer will be 40 since the variable was changed in the function