🚀 Day 36 of My Full Stack Development Journey Today I explored one of the most important concepts in JavaScript — Functions & Scope ⚡ Here’s what I learned today: 🔹 Functions – Reusable blocks of code 🔹 Functions with Arguments – Passing data into functions 🔹 Return Keyword – Getting values back from functions 🔹 Scope – Understanding where variables can be accessed 🔹 Global Scope, Function Scope, Block Scope 🔹 Lexical Scope – How functions access variables from parent scope 🔹 Solved 6 practice questions + 6 assignment questions 💻 These concepts helped me understand how to write cleaner, reusable, and more structured code. Step by step, building strong programming fundamentals 🚀 #FullStackJourney #WebDevelopment #JavaScript #LearningInPublic #100DaysOfCode #CodingJourney
More Relevant Posts
-
🚀 Day 43 of My Full Stack Development Journey Today I stepped into one of the most important concepts in modern JavaScript — Asynchronous Programming ⚡ This wasn’t just about syntax… it was about understanding how JavaScript handles real-world operations behind the scenes. Here’s what I explored today: 🔹 Promises – Writing cleaner async code 🔹 then() & catch() – Handling success & errors 🔹 Promise Chaining – Avoiding messy nested code 🔹 Refactoring Old Code – Converting callbacks → promises 🔹 Async Functions & await – Writing async code like synchronous 🔹 Handling Rejections – Managing errors properly 💡 One big takeaway: Moving from Callback Hell → Promises → Async/Await makes code more readable and maintainable. Practiced multiple questions to strengthen my understanding 💻 This felt like a real shift from beginner to intermediate JavaScript 🚀 #FullStackJourney #WebDevelopment #JavaScript #AsyncJavaScript #LearningInPublic #100DaysOfCode #CodingJourney
To view or add a comment, sign in
-
🚀 Day 42 of My Full Stack Development Journey Today I explored deeper concepts in JavaScript DOM & execution flow ⚡ Here’s what I learned today: 🔹 Form Events – Handling user input through forms 🔹 Extracting Form Data – Getting values from inputs 🔹 More DOM Events – Expanding interaction handling 🔹 JavaScript Call Stack – Understanding how code executes 🔹 Visualizing the Call Stack – Debugging flow step by step 🔹 Breakpoints – Debugging code effectively 🔹 JavaScript is Single Threaded – One task at a time 🔹 Callback Hell – Understanding nested async problems 🔹 Practiced multiple questions to strengthen my concepts 💻 Today’s learning helped me understand not just what JavaScript does, but how it works behind the scenes. Step by step, moving closer to writing efficient and scalable code 🚀 #FullStackJourney #WebDevelopment #JavaScript #DOM #LearningInPublic #100DaysOfCode #CodingJourney
To view or add a comment, sign in
-
🚀 Building Strong Foundations in JavaScript 💻✨ ✨Continuing my journey of improving core JavaScript skills through hands-on coding 👇 🔹 Loops Practice ✅ Printed numbers from 1–50 using: • for loop • while loop • do...while loop 🔹 Logic Building ✅ Generated multiplication table dynamically using user input 🔹 Iteration Techniques ✅ Used for...of for arrays and for...in for objects 🔹 Functions Practice ✅ Built a function to check Prime or Non-Prime numbers ✅ Implemented a Callback Function to calculate square of a number ✅ Practiced IIFE (Immediately Invoked Function Expression) to print today’s date 💡 Key Learnings: • Better understanding of loops and iteration • Clear idea of callback & higher-order functions • Debugged a real issue with IIFE and semicolons 😄 📌 Step by step, improving logic and confidence in JavaScript! #JavaScript #CodingJourney #LearningByDoing #FrontendDeveloper #WebDevelopment #KeepGrowing 🚀
To view or add a comment, sign in
-
🚀 Day 28 of My Full Stack Development Journey Today I focused on understanding decision-making in JavaScript and how programs handle different conditions ⚡ Here’s what I learned today: 🔹 Operators in JavaScript – Performing different operations 🔹 Comparison Operators – Comparing values 🔹 Comparison for Non-Numbers – Understanding how JS handles strings and other types 🔹 Conditional Statements – Writing logic using conditions 🔹 if, else if, else Statements – Handling multiple cases 🔹 Nested if-else – Managing complex conditions 🔹 Practiced several questions to improve my logic 💻 These concepts helped me understand how programs make decisions and respond to different inputs. Step by step, improving my problem-solving skills 🚀 #FullStackJourney #WebDevelopment #JavaScript #LearningInPublic #100DaysOfCode #CodingJourney
To view or add a comment, sign in
-
🚀 Day 37 of My Full Stack Development Journey Today I explored some advanced JavaScript concepts that are widely used in real-world development ⚡ Here’s what I learned today: 🔹 Function Expressions – Storing functions in variables 🔹 Higher Order Functions – Functions returning other functions 🔹 Methods – Functions inside objects 🔹 'this' keyword – Understanding context in JavaScript 🔹 try & catch – Handling errors gracefully 🔹 Arrow Functions – Cleaner and modern syntax 🔹 Implicit Return – Writing concise arrow functions 🔹 Solved practice questions and 5 assignment questions 💻 These concepts helped me understand how JavaScript becomes more powerful and flexible in real applications. Step by step, leveling up my coding skills 🚀 #FullStackJourney #WebDevelopment #JavaScript #LearningInPublic #100DaysOfCode #CodingJourney
To view or add a comment, sign in
-
🚀 Day 38 of My Full Stack Development Journey Today I explored some powerful JavaScript concepts that make code more efficient and dynamic ⚡ Here’s what I learned today: 🔹 setTimeout() & setInterval() – Running code with delays and intervals 🔹 'this' with Arrow Functions – Understanding context behavior 🔹 Array Methods: • forEach() – Iterating over arrays • map() & filter() – Transforming and filtering data • every() & some() – Checking conditions • reduce() – Performing operations on arrays 🔹 Finding maximum value in an array 🔹 Solved practice questions and 4 assignment questions 💻 These concepts made me realize how powerful JavaScript is for handling data and writing cleaner code. Step by step, improving both logic and efficiency 🚀 #FullStackJourney #WebDevelopment #JavaScript #LearningInPublic #100DaysOfCode #CodingJourney
To view or add a comment, sign in
-
🚀 What I Learned Today in JavaScript Today’s learning was focused on strengthening my core fundamentals and improving my logical thinking in JavaScript. 🔹 What I Learned: • Understanding the flow of if, else if, and else conditions • Difference between return and console.log() (and why functions return undefined) • Practical use of logical operators: &&, ||, ! • Using switch-case for handling multiple conditions efficiently • Implemented logic for real-world problems: Rock Paper Scissors game Login system (User vs Admin conditions) Age category checker 🔹 Challenges I Faced: • Confusion between return and console.log() • Understanding how multiple conditions execute (flow of control) • Handling edge cases while writing logic • Writing clean and structured conditional statements 🔹 How I Solved Them: • Practiced writing multiple small programs instead of just reading concepts • Broke problems into smaller steps and solved them one by one • Tested different inputs to understand behavior deeply • Focused on logic building instead of memorizing syntax #javascript #webdevelopment #codingjourney #100daysofcode #developer #learncoding #frontend #programming #logicbuilding
To view or add a comment, sign in
-
-
Day 4 — Making Tech Simple. JavaScript looks simple… But here’s something most beginners don’t understand How does JavaScript handle multiple tasks at once if it’s single-threaded? The answer = Event Loop Here’s what actually happens: • Call Stack → Executes code one by one • Web APIs → Handle async tasks (setTimeout, fetch, events) • Callback Queue → Stores completed tasks • Event Loop → Pushes tasks back to stack when it’s free That’s how JavaScript handles async behavior without breaking. If you don’t understand this… 👉 Async code will always confuse you 👉 Debugging will feel hard But once you get it… Everything starts making sense 💡 📌 Day 4 of breaking down complex tech into simple visuals. Follow me if you want to actually understand JavaScript deeply. Comment “DAY 5” if you’re ready — Syed Shaaz Akhtar #JavaScript #WebDevelopment #Frontend #Programming #SoftwareEngineering
To view or add a comment, sign in
-
-
🚀 Beginner JavaScript Practice Programs I’ve been improving my JavaScript fundamentals by working on basic logic-building programs 💻 Here are some concepts I practiced: ✔ Even / Odd Number ✔ Largest of 3 Numbers ✔ Calculator using Switch Case ✔ Grade System ✔ Palindrome Check ✔ Multiplication Table and more... This helped me strengthen my understanding of: 🔹 Conditional Statements 🔹 Loops 🔹 String & Number Operations 📌 Check out my code on GitHub: https://lnkd.in/gAJ36hfv I’m currently learning and building my skills step by step towards becoming a Full Stack Developer 🚀 #JavaScript #CodingJourney #Beginners #Learning #Programming #FullStackDeveloper
To view or add a comment, sign in
-
Ever felt like your functions could be more flexible and reusable? 🤔 That’s where currying in JavaScript comes in! Instead of passing all arguments at once, currying transforms a function into a sequence of functions — each taking a single argument. ✨ Why it matters: • Improves code reusability • Encourages cleaner, modular design • Makes function composition easier 🔍 Example: const add = a => b => a + b; Now you can do: const add5 = add(5); add5(3); // 8 Small change, big impact 💡 If you're diving deeper into functional programming, currying is definitely a concept worth mastering. #JavaScript #WebDevelopment #FunctionalProgramming #CleanCode #100DaysOfCode
To view or add a comment, sign in
-
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