JS: Print
To print, use
console.log
or
alert
console.log("hello"); // print to browser's console
To see the output of console.log
, open
Browser Console
.
alert("hello"); // bring up a pop-up dialog
To print, use
console.log
or
alert
console.log("hello"); // print to browser's console
To see the output of console.log
, open
Browser Console
.
alert("hello"); // bring up a pop-up dialog