Cómo imprimir el valor de la variable en JavaScript en HTML
var name="kieran";
document.getElementById("output").innerHTML=name;
and the html code would be:
<p id="output"></p>
Aakashcode12