Answers for "how to print something on console in javascript"

20

how to print to console javascript

console.log("string")
Posted by: Guest on February-13-2020
5

javascript log to console

const varName = 'this variable';

console.log(varName);
Posted by: Guest on February-20-2020
2

html console text

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

javascript console print

<!DOCTYPE html>
<html>
<body>
	<script>
    	console.log("Hello, World!")
    	console.log(5 + 6);
    </script>
</body>
</html>
Posted by: Guest on July-06-2021

Code answers related to "how to print something on console in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language