- Questions
##Introduction to programming languages in general
How Computers Work
Machine Code
Assembly Language
Higher Level Languages
Compiled vs Interpreted
Node
Chrome DevTools Console
A useful tool for testing something out or learning in a programming language.
An interactive program that takes the following steps:
- Prompts the user to input a line of code
- Reads the line
- Evaluates the line (a.k.a It executes or runs the line of code)
- Prints the results of running that line of code
- Loops back to step 1, prompting the user for input
- Math with numbers
Statement - A group of words, numbers, and operators that performs a specific task. Expression - any reference to a variable or value, or a set of variable(s) and value(s) combined with operators
Operator - how we perform actions on variables and values
- Data Types
- Numbers
- Strings
- Reuse
- Variables