Day 27 of Learning JavaScript 🚀 Started building a Weather App using API. Goal: Fetch and display weather data. Combining: • API • DOM • Events Feels like a real-world project. #javascript #frontenddeveloper #projects
Building a Weather App with JavaScript and API
More Relevant Posts
-
🚀 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
-
🚀 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
-
HI CONNECTIONS Day 20 of 30: Mastering JavaScript Objects 🚀 Today’s challenge was LeetCode 2727: Is Object Empty. While simple on the surface, it highlights a fundamental JS concept: objects are compared by reference, not value. To check for emptiness efficiently: ✅ Object.keys(obj).length === 0: Clean and readable. ✅ for...in loop: Optimized for an "early exit" on large datasets. Small, consistent steps are the key to mastering the MERN stack and technical problem-solving! 💻✨ #JavaScript #LeetCode #CodingChallenge
To view or add a comment, sign in
-
-
🚀 Day 67 | JavaScript Loops & Array Iteration Today I practiced JavaScript loops and working with arrays of objects 💻 🔹 What I Worked On: • Iterated through array of objects using for loop • Printed all elements and accessed object properties like loc • Used loop with step increment (i += 2) to print alternate values • Practiced reverse counting using for and while loops • Used forEach() for cleaner array iteration 💡 Key Learning: • Arrays of objects are very common in real-world applications • Loop conditions must be handled carefully (i < length vs <= length) • forEach() is simple and readable for iteration • Multiple ways to loop → choose based on requirement 🔥 Takeaway: 👉 Mastering loops is key to handling data efficiently in JavaScript Consistency is improving logic step by step 🚀 #Day67 #JavaScript #Loops #ArrayIteration #ProblemSolving #CodingJourney #10000Coders #WebDevelopment #SravanKumarSir
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
-
🚀 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 29 of My Full Stack Development Journey Today I continued diving deeper into JavaScript and focused on logic building and user interaction ⚡ Here’s what I learned today: 🔹 Logical Operators – Combining multiple conditions 🔹 Truthy & Falsy Values – Understanding how JS evaluates values 🔹 Switch Statement – Handling multiple conditions more efficiently 🔹 Alerts & Prompts – Interacting with users through the browser 🔹 Practiced multiple questions and assignment problems 💻 These concepts helped me understand how JavaScript handles real-world logic and user input. Step by step, building confidence in writing better and smarter code 🚀 #FullStackJourney #WebDevelopment #JavaScript #LearningInPublic #100DaysOfCode #CodingJourney
To view or add a comment, sign in
-
🚀 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
To view or add a comment, sign in
-
🚀 I was exploring what’s new in JavaScript (ECMAScript 2025), and I thought of sharing a few features that I found interesting. Here’s the first one 👇 👉 Iterator Helpers We often chain array methods like this: const prices = [5, 12, 8, 20, 3, 15]; const result = prices .map(p => p + 2) .filter(p => p >= 10) .slice(0, 2); This creates multiple intermediate arrays in memory. With Iterator Helpers: 👉 No intermediate arrays 👉 Lazy execution (only processes what’s needed) 👉 Stops early once it gets required results As someone who mostly works on frontend, this felt a bit subtle at first, but the performance benefit makes it quite interesting.
To view or add a comment, sign in
-
-
🚀 𝐃𝐚𝐲 𝟓/𝟏𝟓 𝐨𝐟 𝐌𝐲 𝐉𝐚𝐯𝐚𝐒𝐜𝐫𝐢𝐩𝐭 𝐋𝐞𝐚𝐫𝐧𝐢𝐧𝐠 𝐒𝐞𝐫𝐢𝐞𝐬 Today I learned about Loops in JavaScript 🔁 👉 Loops are used to run a block of code multiple times. 📌 Types of Loops: 1️⃣ for loop for (let i = 0; i < 5; i++) { console.log(i); } 2️⃣ while loop let i = 0; while (i < 5) { console.log(i); i++; } 👉 Both loops do the same thing, but the use depends on the situation. 📌 Key Difference: for loop → when you know how many times to run while loop → when condition-based looping is needed Loops make coding faster and more efficient 💻✨ 💬 Question: Which loop do you find easier — for or while? Let’s learn together 🚀 #JavaScript #WebDevelopment #LearningInPublic #Day5 #FrontendDevelopment
To view or add a comment, sign in
-
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