🚀 Day 1/90 — JavaScript Frontend Engineer Journey Today I officially started my 90-day journey to become a Job-Ready Frontend Engineer. And instead of jumping directly into React or frameworks, I started with the core: 👉 How JavaScript Actually Works Behind the Scenes. Here’s what I learned today: 🔹 JavaScript is single-threaded 🔹 It runs inside an engine like Chrome’s V8 🔹 Every JS program starts with a Global Execution Context 🔹 Execution happens in two phases: 1️⃣ Memory Creation Phase 2️⃣ Code Execution Phase 🔹 Functions are fully hoisted 🔹 Variables declared with var are hoisted and initialized as undefined 🔹 let and const are hoisted but stay inside the Temporal Dead Zone I also deeply understood how the Call Stack works (LIFO principle) and how JavaScript manages function execution internally. This foundation is critical for: Understanding closures Mastering async JavaScript Writing predictable React code Cracking frontend interviews I believe strong fundamentals build strong engineers. 📌 Next: Variables, Data Types & Memory (Stack vs Heap) If you're also learning frontend or switching careers, let’s connect and grow together. #FrontendDevelopment #JavaScript #WebDevelopment #ReactJS #NextJS #100DaysOfCode #SoftwareEngineering #RemoteJobs #SelfLearning #ProgrammingJourney
Learning JavaScript Fundamentals for Frontend Engineer
More Relevant Posts
-
🚀 Day 6/90 — Becoming a Job-Ready Frontend Engineer Today I studied one of the most powerful and interview-critical JavaScript concepts: 👉 Closures At first, closures felt abstract. But once I understood lexical scope deeply, everything started making sense. Here’s the core idea: A closure is created when a function remembers and accesses variables from its outer lexical scope — even after the outer function has finished execution. This means: ✔ Functions can “remember” data ✔ Variables can stay alive in memory ✔ We can create private state in JavaScript Example insight: When a function returns another function, the inner function still has access to the outer function’s variables. This concept is heavily used in: • React hooks • Event listeners • setTimeout / async callbacks • Data privacy patterns • Functional programming One powerful realization: JavaScript does not garbage collect variables if they are still being referenced by a closure. Understanding closures completely changed how I see function execution and memory behavior. Strong fundamentals today → advanced React tomorrow. Next: Building a mini project using closures + DOM. #FrontendDevelopment #JavaScript #WebDevelopment #Closures #SoftwareEngineering #ReactJS #NextJS #100DaysOfCode #ProgrammingJourney #RemoteDeveloper.
To view or add a comment, sign in
-
-
🚀 Day 9/90 — Becoming a Job-Ready Frontend Engineer Today I went deeper into Advanced Array Methods in JavaScript — the kind of concepts that are used daily in React applications and frequently asked in interviews. Focused on: 🔹 sort() — and why it can be dangerous if you don’t use a compare function 🔹 find() — returning the first matching item 🔹 some() — checking if at least one condition passes 🔹 every() — verifying if all elements satisfy a condition One important realization: By default, sort() converts elements to strings before comparing — which can lead to unexpected results. Example: [10, 2, 5].sort() → ❌ Incorrect order Correct approach: array.sort((a, b) => a - b) Another key learning: Understanding the difference between: • find() → returns a single item • filter() → returns a new array • some() → returns boolean (stops early) • every() → returns boolean (stops early) These methods are essential for: ✔ Rendering filtered lists in React ✔ Handling API data ✔ Validating form conditions ✔ Writing clean, functional JavaScript The more I practice arrays, the more I realize frontend engineering is about thinking functionally and avoiding unnecessary mutations. Next: Deep dive into Objects — destructuring, spread operator & immutability. #FrontendDevelopment #JavaScript #WebDevelopment #ReactJS #NextJS #SoftwareEngineering #ProgrammingJourney #100DaysOfCode #RemoteDeveloper #TechCareer
To view or add a comment, sign in
-
-
🚀 Day 3/90 — Becoming a Job-Ready Frontend Engineer Today’s focus was one of the most misunderstood topics in JavaScript: 👉 Type Coercion & the difference between == and === At first glance, both look similar. But internally, they behave very differently. Here’s what I deeply understood today: 🔹 JavaScript performs automatic type conversion (Implicit Coercion) 🔹 The + operator triggers string conversion when one operand is a string 🔹 Other operators like -, *, / force numeric conversion Example: "5" + 2 → "52" "5" - 2 → 3 Big difference. Then the important part: == (Loose Equality) • Compares value • Converts types if needed 5 == "5" → true === (Strict Equality) • Compares value • Compares type • No conversion 5 === "5" → false I also explored: ✔ Truthy & Falsy values ✔ Why false == 0 is true ✔ Why null == undefined is true but null === undefined is false ✔ Why relying on implicit coercion can create real production bugs Key takeaway: As a frontend engineer, never rely on JavaScript’s “magic conversions.” Be explicit. Be predictable. Strong fundamentals today = fewer bugs tomorrow. Next: Functions & Execution Flow. #FrontendDevelopment #JavaScript #WebDevelopment #ReactJS #NextJS #SoftwareEngineering #100DaysOfCode #ProgrammingJourney #RemoteDeveloper #TechLearning
To view or add a comment, sign in
-
-
🚀 Day 5/90 — Becoming a Job-Ready Frontend Engineer Today I focused on one of the most fundamental (and interview-heavy) JavaScript concepts: 👉 Scope & Hoisting At first, these topics look simple. But when you understand them deeply, you realize how many bugs come from misunderstanding scope behavior. Here’s what I explored: 🔹 Global Scope vs Function Scope vs Block Scope 🔹 Why var is function-scoped (and why it’s risky) 🔹 Why let and const are block-scoped 🔹 What actually happens during the Memory Creation Phase 🔹 How hoisting works internally 🔹 What the Temporal Dead Zone (TDZ) really means 🔹 How the Scope Chain resolves variables One key realization: JavaScript doesn’t “move code up” during hoisting. It allocates memory first, then executes line by line. That small detail changes how you debug real-world applications. Example mindset shift: var → hoisted and initialized as undefined let / const → hoisted but NOT initialized (TDZ) Understanding scope deeply is critical for: ✔ Writing predictable functions ✔ Avoiding accidental globals ✔ Mastering closures ✔ Debugging complex frontend applications Strong fundamentals build strong engineers. Next: Closures — the concept that separates beginners from advanced JavaScript developers. #FrontendDevelopment #JavaScript #WebDevelopment #SoftwareEngineering #ReactJS #NextJS #100DaysOfCode #ProgrammingJourney #RemoteDeveloper #TechCareer
To view or add a comment, sign in
-
-
🚀 Day 2/90 — Becoming a Job-Ready Frontend Engineer Today I went deeper into one of the most important JavaScript foundations: 👉 Variables, Data Types & Memory (Stack vs Heap) Most beginners just memorize var, let, const. Today I understood what actually happens in memory. Here’s what I learned: 🔹 JavaScript stores primitive values (string, number, boolean, null, undefined, bigint, symbol) in the Stack. 🔹 Objects, arrays, and functions are stored in the Heap and accessed by reference. That means: If you copy a primitive → you copy the value. If you copy an object → you copy the reference. Example mindset shift: let a = 5 let b = a Changing b does NOT affect a ✅ But: let user1 = { name: "Fahad" } let user2 = user1 Changing user2.name WILL affect user1 ❗ This concept is critical for: React state management Avoiding mutation bugs Writing predictable frontend applications I also deeply understood: ✔ var vs let vs const ✔ Block scope vs Function scope ✔ Hoisting behavior ✔ Temporal Dead Zone (TDZ) ✔ Why typeof null returns "object" (historical JS bug) Strong fundamentals = Fewer bugs + Better interviews. Tomorrow: Type Coercion & == vs === deep dive. Building in public. Improving daily. 💪 #FrontendDevelopment #JavaScript #WebDevelopment #ReactJS #NextJS #SoftwareEngineering #100DaysOfCode #RemoteDeveloper #ProgrammingJourney #TechCareer
To view or add a comment, sign in
-
-
Frontend development has evolved beyond just HTML, CSS, and JavaScript. The expectations have changed, and so must our learning paths. I recently discovered a roadmap that outlines what it takes to become a job-ready frontend engineer in 2026: 🔹 Phase 1: Foundational Mastery - Strong grip on HTML5, CSS (Flexbox, Grid, BEM) - JavaScript fundamentals (closures, hoisting, prototypes) - Deep understanding of browser internals (DOM, Event Loop, rendering) 🔹 Phase 2: Professional Ecosystem - Modern JavaScript (async/await, promises, ESNext) - Frameworks like React + state management (Redux/Zustand) - Tooling: TypeScript, Git, Vite/Webpack, testing (Jest) - Architecture concepts: CSR, SSR, SSG, ISR, PWA What stands out is that it’s not just about learning tools, but understanding how everything connects — from browser internals to production deployment. My takeaway: Frontend today = Engineering + Architecture + Performance + Security. For those preparing for frontend interviews or looking to level up, this roadmap serves as a solid guide to stay focused and avoid feeling overwhelmed. #FrontendDevelopment #WebDevelopment #JavaScript #ReactJS #Programming #SoftwareEngineering #TechCareers #Developers #CodingJourney #FrontendEngineer
To view or add a comment, sign in
-
-
🚀 Day 4/90 — Becoming a Job-Ready Frontend Engineer. Today I focused on one of the most fundamental building blocks of JavaScript: 👉 Functions & Execution Flow At first, functions look simple — just reusable blocks of code. But today I went deeper into how they actually behave inside the JavaScript engine. Here’s what I explored: 🔹 Function Declaration vs Function Expression 🔹 Why function declarations are fully hoisted 🔹 Why function expressions are NOT callable before initialization 🔹 Arrow functions and modern ES6 syntax 🔹 Parameters vs Arguments 🔹 The importance of the return keyword One important realization: If a function does not explicitly return a value, it automatically returns undefined. Understanding execution flow was even more powerful. When a function is called: • A new Execution Context is created • It gets pushed into the Call Stack • JavaScript executes it line by line • Then it gets removed (LIFO principle) This deeper understanding is crucial for: ✔ Debugging real-world applications ✔ Avoiding unexpected undefined values ✔ Understanding closures and async behavior ✔ Writing predictable React components Strong fundamentals today = clean architecture tomorrow. Next: Scope & Hoisting (one of the most important JS concepts). #FrontendDevelopment #JavaScript #WebDevelopment #ReactJS #NextJS #SoftwareEngineering #100DaysOfCode #ProgrammingJourney #RemoteDeveloper #TechLearning
To view or add a comment, sign in
-
-
🚀 Day 7/90 — Becoming a Job-Ready Frontend Engineer Today was not about theory. Today was about building. I created a Smart Counter App using: ✔ JavaScript Closures ✔ DOM Manipulation ✔ Event Listeners ✔ Private State Pattern Instead of using a global variable for the counter, I used a closure to keep the state private. Core idea: A function returns methods (increment, decrement, reset), and the internal count variable remains inaccessible from the outside. This helped me understand: 🔹 How JavaScript preserves variables through closures 🔹 How private state works conceptually 🔹 How event-driven programming updates the UI 🔹 How JavaScript execution connects with real user interaction One key realization: React’s state management concept becomes much easier to understand when you truly grasp closures and function scope. I also extended the project by adding: • A minimum value check • A limit message when the counter reaches max Learning by building hits differently.Create a image for this Linkedin post. Next: Arrays deep dive (map, filter, reduce — essential for React). #FrontendDevelopment #JavaScript #WebDevelopment #Closures #DOMManipulation #SoftwareEngineering #ReactJS #NextJS #100DaysOfCode #ProgrammingJourney #RemoteDeveloper
To view or add a comment, sign in
-
-
🚀 Day 16 — React Fundamentals Started ⚛️ Continuing my full stack journey, today I stepped into Step 2: Frontend (React Focused) after building a strong JavaScript foundation 💻🔥 Started with React Core Concepts — not just using React, but understanding how it actually works internally 👇 🔹 Covered topics: - What is React & why it’s used - Single Page Application (SPA) concept - Virtual DOM & how React updates UI efficiently - Component-based architecture - JSX & how it converts into JavaScript internally 💡 Key Learning: React is not just about building UI — it’s about efficient rendering, reusable architecture, and understanding how updates happen behind the scenes. 👉 Always remember: - React is a library, not a framework - Virtual DOM helps update only required parts (performance boost ⚡) - Components make code reusable & scalable - JSX is converted into React.createElement (not directly understood by browser) 📌 Step 2 officially started — diving deeper into frontend engineering ⚛️ 📌 Day by day, getting closer to being job-ready 🚀 #ReactJS #FrontendDevelopment #FullStackDeveloper #MERNStack #InterviewPreparation #LearnInPublic #CodingJourney #Developers #Consistency #100DaysOfCode #WebDevelopment #NextJS #Programming #TechJourney #LinkedIn #Growth #Connections
To view or add a comment, sign in
-
🚀 Frontend / Full Stack Interview Experience (2.9 Years) Recently appeared for an interview and it was a good learning experience covering both fundamentals and practical concepts. 🔹 Key areas covered: 🧠 JavaScript Fundamentals • Event Loop & Execution Context • Closures and memory management • let vs var vs const • call, bind, and apply • How valueOf() works in JavaScript • setTimeout vs setImmediate • async/await and handling asynchronous operations • 5+ JavaScript output-based questions ⚡ Performance & Optimization • Debouncing vs Throttling • Image optimization techniques • Detecting and preventing memory leaks • Optimizing React applications • Optimizing API calls and handling large data efficiently • Next.js optimizations (code splitting, image optimization, caching) ⚛️ React & Rendering • Different rendering strategies (CSR, SSR, SSG) • Next.js Page Router vs App Router 🔌 Backend & System Concepts • Node.js fundamentals • WebSockets • MongoDB queries • Clustering basics A great learning experience — will keep building and improving. #FrontendDeveloper #ReactJS #NextJS #JavaScript #NodeJS #WebDevelopment #InterviewExperience #SoftwareEngineer
To view or add a comment, sign in
More from this author
Explore related topics
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development
Great start! Focusing on fundamentals instead of jumping into frameworks is exactly the right approach. A strong understanding of how JavaScript works under the hood will make everything else—especially React and async concepts—much easier to master.