Does console.log work in Javascript? I mean for producing output on screen like:
console.log("Hello World!")
Does console.log work in Javascript? I mean for producing output on screen like:
console.log("Hello World!")
To produce an output on the screen, as I understand you to mean, one would use the alert()
command to produce a pop-up; the console.log()
command is used to send data to the console, which is not shown to the viewer by default.