1.1 - Output & the Console

Review:
We will be programming in an IDE - several IDE's exist.

We will be backing-up our code to Github, an internet-based version control system.

JavaScript's entrypoint is the top of the script file - you don't need a main() function.

To print something to the console in JS, the command is console.log(x) where x is whatever you want to print.

1.1 - Output & the Console

Output to the user is crucial in programming:


In-Class Practice (lead by the teacher):

Today's Task(s):

Read and follow the instructions in "1.1 - Output & the Console"

Did you know?