how to write with ? 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 write on a web page javascript
document.write("Hello") !-- Hello for example