Skip to content

manharwebdev/javascript-bootcamp-2025

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JavaScript Bootcamp 2025 🚀

This repository documents my 7-day journey to master JavaScript fundamentals for React development.

📅 Daily Progress

Day 1: Variables & Control Structures

  • Variables (let vs const)
  • Template Literals (Backticks)
  • If/Else Logic
  • Ternary Operators (condition ? true : false)
  • Switch Statements

💻 Code Snippets

I learned how to replace complex if/else chains with clean Ternary operators:

// Old Way
if (age >= 18) {
  status = "Eligible";
} else {
  status = "Not Eligible";
}

// Pro Way (Ternary)
const status = age >= 18 ? "Eligible" : "Not Eligible";

### Day 2: Arrays & Loops
- [x] Arrays (`push`, `pop`, `splice`)
- [x] For Loops (Iterating lists)
- [x] While Loops (Conditional looping)
- [x] Nested Loops (Clock simulation)
- [x] The Accumulator Pattern (Summing totals)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published