Week 1: JavaScript Basics
Key Concepts:
- What is JavaScript? History & Use Cases.
- Writing your first JavaScript program (
console.log
).
- Basic syntax: variables (
let
, const
, var
).
- Primitive data types (
string
, number
, boolean
, null
, undefined
, bigint
, symbol
).
- Type conversion and operators (arithmetic, comparison, logical, assignment).
Projects:
- Personal Introduction Script – Print your name, age, and favorite hobby using variables.
- Simple Calculator – Take two numbers as input and perform basic arithmetic operations.
- Age Verifier – Ask for the user's age and determine if they are eligible to vote.
Resources:
Week 2: Control Flow (Conditions & Loops)
Key Concepts:
if
, else if
, else
statements.