JavaScript
Core language concepts and modern patterns.
1 topic, 6 lessons
Fundamentals
Variables, functions, and control flow.
- 1
test
test
- 2
What is Javascript?
What JavaScript does on the web, your first console.log, and how to read errors without panicking.
- 3
Variables: let and const
Store data with const and let, naming rules, and strings, numbers, and booleans.
- 4
Strings and operators
Join text, template literals, and when + adds numbers vs glues strings.
- 5
Conditionals: if, else if, and else
Make decisions in code with if, else if, and else, plus && and `
- 6
Loops: for and while
Repeat code with for and while, loop through arrays, and build running totals.