Documenting my learning journey in JavaScript using The Complete JavaScript Course 2022: From Zero to Expert! by Jonas Schmedtman
- π What is JavaScript
- π‘ Hello World in JavaScript
- π What do we use JavaScript for
- π JavaScript Releases
- π‘ Inline Linking
- π‘ External Linking
- π Definition of Values
- π Definition of Variables
- π‘ Variable Naming Convention
- π‘ Rules and Reserved Keywords
- π‘ Code File
- π Definition of Data Types
- π The 7 Primitive Data Types
- π‘ Code File
- π Ways to declare a Variable
- π When to use Var
- π Let
- π Const
- π Let or Const
- π‘ Code File
- π Basic Operators
- π Arithimetic Operators
- π Assignment Operators
- π Comparison Operators
- π‘ Code File
- π Definition of Operator Precedence
- π MDN Docs Reference
- π‘ Code File
- π Coding Challenge
- π‘ Solution
- π Strings
- π Template Literals
- π‘ Code File
- π Conditional Statements
- π If Statement
- π Else Statement
- π Else If Statement
- π‘ Code File
- π Coding Challenge
- π‘ Solution
- π Definition
- π Type Conversion
- π Type Coercion
- π‘ Code File
- π Definition of Truthy & Falsy Values
- π‘ Code File
- π Strict Equality Operator ===
- π Loose Equality Operator ==
- π Differential Equality Operator !==
- π‘ Code File
- π Defintion of Boolean Logic
- π AND Operator
- π OR Operator
- π NOT Operator
- π How do Logical Operators Work?
- π‘ Code File
- π Definition of Logical Operators
- π‘ Code File
- π Coding Challenge
- π‘ Solution
- π What are Switch Statements?
- π Break
- π Default
- π‘ Code File
- π Introduction to Ternary Operator
- π‘ Code File
- π Coding Challenge
- π‘ Solution