print string in javascript code example
Example 1: 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 2: 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.
Example 3: html console text
<script>
console.log('%c text', 'background:---; color:---; font-size:---;');
</script>
Example 4: print in javascript
console.log("")