how to show a javascript variable on the website code example

Example 1: how to print to console javascript

console.log("string")

Example 2: print things js

console.log("Hello World");

Example 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

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

Example 5: javascript print

console.log("Who's Joe?")

Example 6: html console text

<script>
  console.log('%c text', 'background:---; color:---; font-size:---;');
</script>