js print code example

Example 1: how to print to console javascript

console.log("string")

Example 2: print things js

console.log("Hello World");

Example 3: js how to print

console.log(text);

Example 4: 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 5: how to code print in javascript

console.log("print")
//or
alert("Print")

Example 6: how to print in javascript

console.log("Text");
var randomText = "randomText";

console.log(randomText);
console.err("Error: U Looked at this comment");
//Logs an error.