how to print the value of variable in javascript in html code example
Example: 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:
var name="kieran";
document.getElementById("output").innerHTML=name;
and the html code would be: