Answers for "how to print javascript variable value in html"

5

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>
Posted by: Guest on September-29-2020
1

how to print the value of variable in javascript in html

var name="kieran";
document.getElementById("output").innerHTML=name;

and the html code would be: 

<p id="output"></p>
Posted by: Guest on September-24-2020
2

html console text

<script>
  console.log('%c text', 'background:---; color:---; font-size:---;');
</script>
Posted by: Guest on June-19-2020

Code answers related to "how to print javascript variable value in html"

Browse Popular Code Answers by Language