Table of Contents
What to Learn:
- Introduction to JavaScript (history, usage, embedding in HTML)
- Variables (
let
,const
,var
) - Data Types (String, Number, Boolean, Null, Undefined, Symbol)
- Operators (Arithmetic, Comparison, Logical)
- Conditionals (
if
,else
,switch
) - Loops (
for
,while
,do...while
,for...of
) - Functions (declaration, expression, arrow functions)
- Scope (global, local, block)
- Arrays and Objects (basics)