Answers for "how to display a variable in javascript"

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
3

how to print a line in javascript

console.log("Your line would be here")//Prints a line on the console 
alert("Your message here")//Raises an alert
Posted by: Guest on April-27-2020
-2

js variable html

<div onload="document.innerHTML(name + ' is ' + age)">
Posted by: Guest on April-14-2020

Code answers related to "how to display a variable in javascript"

Browse Popular Code Answers by Language