javascript printing variables code example
Example 1: how to print to screen in javascript
console.log("Hello World!");
alert("Console has been updated.");
Example 2: html console text
<script>
console.log('%c text', 'background:---; color:---; font-size:---;');
</script>