Skip to content

Files

Latest commit

 

History

History

3-different-ways-to-see-results

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
// will popup a dialogue
alert("hello popup");

// will output directly to the html page
document.write("hello document");

// will display in the console
console.log("hello console");