Answers for "how to print a string in javascript"

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
9

how to code print in javascript

console.log("print")
//or
alert("Print")
Posted by: Guest on April-07-2020
2

html console text

<script>
  console.log('%c text', 'background:---; color:---; font-size:---;');
</script>
Posted by: Guest on June-19-2020
0

how to print in javascript

//It is very esay to print!
//This how to print in Javascript!
console.log("string");

var num = 1;

console.log(num);
Posted by: Guest on April-03-2021

Code answers related to "how to print a string in javascript"

Browse Popular Code Answers by Language