|
| 1 | +# JavaScript Learning Journey |
| 2 | + |
| 3 | +A comprehensive guide for learning JavaScript fundamentals through an organized, step-by-step approach. |
| 4 | + |
| 5 | +## Table of Contents |
| 6 | + |
| 7 | +1. **[Introduction to JavaScript](01-introduction.md)** |
| 8 | + |
| 9 | + * What is scripting? |
| 10 | + * Client-side vs. Server-side scripting |
| 11 | + * History and Versions of ECMAScript |
| 12 | + |
| 13 | +2. **[Variables & Scripting Basics](02-variables.md)** |
| 14 | + |
| 15 | + * Using the `<script>` tag |
| 16 | + * Working with `var`, `let`, and `const` |
| 17 | + * Naming rules and best practices |
| 18 | + |
| 19 | +3. **[Data Types & Formatting](03-data-types.md)** |
| 20 | + |
| 21 | + * Primitive and Composite Data Types |
| 22 | + * Escape sequences for formatted output |
| 23 | + |
| 24 | +4. **[Built-in Functions](04-functions.md)** |
| 25 | + |
| 26 | + * Commonly used functions like `alert`, `prompt`, and `parseInt` |
| 27 | + |
| 28 | +5. **[Events & Interactivity](05-events.md)** |
| 29 | + |
| 30 | + * Event Handling and Bubbling |
| 31 | + * Understanding the event life cycle |
| 32 | + |
| 33 | +6. **[Mouse Events](06-mouse-events.md)** |
| 34 | + |
| 35 | + * `onclick`, `onmouseover`, `onmousemove` |
| 36 | + * Tracking cursor position |
| 37 | + |
| 38 | +7. **[Increment & Decrement Operators](07-increment-decrement.md)** |
| 39 | + |
| 40 | + * Pre-increment vs Post-increment |
| 41 | + * Understanding operator precedence |
| 42 | + |
| 43 | +8. **[Control Flow: Loops](08-loops.md)** |
| 44 | + |
| 45 | + * `for`, `while`, and `do...while` loops |
| 46 | + * Choosing the right loop for your task |
| 47 | + |
| 48 | +9. **[Control Flow: If-Else](09-if-else.md)** |
| 49 | + |
| 50 | + * `if`, `else`, and `else if` ladder |
| 51 | + * Nested conditions and Ternary Operator |
| 52 | + |
| 53 | +10. **[Control Flow: Switch Case](10-switch-case.md)** |
| 54 | + |
| 55 | + * `switch` statement syntax |
| 56 | + * `case`, `break`, and `default` |
| 57 | + |
| 58 | +11. **[String Methods](11-string-methods.md)** |
| 59 | + |
| 60 | + * Most commonly used methods like `slice`, `replace`, `split`, etc. |
| 61 | + * Understanding string immutability |
| 62 | + |
| 63 | +### Reference |
| 64 | +* **[Operators Reference](operators.md)** |
| 65 | + |
| 66 | +--- |
| 67 | + |
| 68 | +## How to Use This Guide |
| 69 | + |
| 70 | +* **Sequential Learning:** Section 1 se start karein aur step-by-step aage barhein |
| 71 | +* **Quick Reference:** Kisi bhi topic par direct jump karne ke liye links use karein |
| 72 | +* **Hands-on Practice:** Har section me simple aur practical JavaScript examples hain |
| 73 | + |
| 74 | +## ✅ Prerequisites |
| 75 | + |
| 76 | +HTML aur CSS ki basic understanding honi chahiye taa ke JavaScript concepts easily samajh aa saken. |
0 commit comments