Completed
Installing Node and VS Code
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Learning JavaScript Fundamentals - Variables, Operations, Conditional Statements
Automatically move to the next video in the Classroom when playback concludes
- 1 Installing Node and VS Code
- 2 Values and Variables
- 3 let, const, and var
- 4 Data types in JavaScript
- 5 String concatenation and template literals
- 6 Type coercion in JavaScript
- 7 Math Operators
- 8 Operator precedence in JavaScript
- 9 Assignment operators in JavaScript
- 10 Equality operators in JavaScript
- 11 Comparison operators in JavaScript
- 12 if/else statements in JavaScript
- 13 else if statements in JavaScript
- 14 Coding challenge #1
- 15 Type conversion (strings to numbers) / (numbers to strings)
- 16 Truthy and falsy values in JavaScript
- 17 Nested if statements and the logical AND (&&) operator
- 18 Coding challenge #2
- 19 Logical OR (||) operator in JavaScript
- 20 Logical NOT (!) operator in JavaScript
- 21 Switch statement
- 22 Ternary operator (?)
- 23 Coding challenge #3