Intro to Programming
Key Concepts:
A program is a text file with instructions to accomplish some task.
Comments are ignored and help to explain the code.
Expressions are raw data values or the results of operations. Expressions on their own do nothing.
Statements change the program.
Creating a variable increases the memory used by the program.
if
statements change the "control flow" of a program by skipping lines of code.
Node is a program that interprets and executes JavaScript code.
console
is a built-in object with functions that print text to the Terminal output. A program can run without any console statements, you just won't see any output in the Terminal.Control Flow is the order in which lines of code are executed.
Code Style refers to the formatting of the code in a way that makes it easier to read and understand. Refer to the style guide for more details.
Setup
In your
unit-1
folder, create a new folder called1-intro-to-programming
cd 1-intro-to-programming
touch index.js
What is a program?
A program is a text file with instructions to accomplish some task.
Comments are ignored and help to explain the code.
Expressions are raw data values or the results of operations. Expressions on their own do nothing.
Statements change the program.
References to variables are also expressions, since they retrieve the raw data held inside of them.
Expressions can be composed of multiple smaller expressions! For example, the
instructor
and'ben'
expressions are combined using the!==
operator to create an expression that returns the valuefalse
Running a file with Node
When we want to run the code in a file, we use Node
Node is a program for interpreting and executing JavaScript code
It is installed on your computers and can be activated in the Terminal using the
node <filename>
command:
Question: Any guess as to why we're not seeing anything when we run this file?
Debunking the Console Log Myth
console.log()
is a built-in function that prints text to the Terminal outputThe word "Console" is a reference to the Terminal.
Every language has a built-in console output function:
The most common assumption that beginner developers make is that
console.log()
is the only way to make your program work. This is not the case!
Your computer is executing the instructions you give it, but you just can't see the results.
console.log()
just prints the results to the Terminal.
As you can see,
console
is actually an object with functions inside (a.k.a "methods") that can each be used to print things to the Terminal.
Control Flow
Control Flow refers to the order in which code is executed.
The default control flow is top to bottom, with every line of code being executed in order.
if
statements change the control flow of a program, causing certain lines to be skipped.
Functions are containers for statements. A function call statement changes the control flow by "activating" the function. Calling a function sets the first line of code in the function as the next line of code to be executed.
The
return
statement "returns" the control flow to the line of code that called the function. Thereturn
statement can be omitted if no value is returned but technically its still there (otherwise the program wouldn't know to go back to the function call!).
Question: What is the control flow of the code above? (Describe it using line numbers.)
Inspecting the Control Flow With Node
You can view the exact control flow of a program by using the built in VS Code Run and Debug panel.
Once you open the panel, open a
.js
file and add adebugger;
statement wherever you would like to inspect your code. Then, click "Run and Debug" and select the "Node" configuration.
At the top, you will see the debugger control panel where you can control the execution of the program.
Code Style and Readability
Readability is how easy it is for another engineer to read and understand your code (including future you).
Indentation shows the scope of each line of code. Without it, it is harder to read and understand.
Whenever a block of code is created with curly braces
{}
, we indent the code inside using the Tab key:
Question: How would you fix the code style of this function?
Last updated