Day 11: Mastering useRef React Hook – Accessing DOM & Persisting Values
In today’s React learning series, we will deep dive into useRef React Hook. When working with React, you’ve probably noticed that most things revolve around state and props. We’ve used useState to store and update values, and we’ve seen how React automatically re-renders components when state changes. But what if we want to store a […]
JavaScript Tutorial – Day 3: Variables and Data Types in JavaScript
Welcome back to our JavaScript tutorial series! 🚀Today, we will learn Variables and Data Types in JavaScript with clear examples. So far: Now, on Day 3, we will cover variables and data types – the building blocks that allow us to store and work with data in JavaScript. By the end of this blog, you’ll […]
Day 10: Understanding useEffect React Hook
In today’s React learning series, we will deep dive into useEffect React Hook. So far in this React series, we’ve learned how to manage state with useState, render lists, handle events, and more. But apps don’t just display data — they also need to fetch data, update the document title, listen to events, and clean […]
Day 9: Understanding useState React Hook
In this blog, we’ll take a deep dive into useState React Hook and learn how to work with arrays, objects, and multiple state variables. State is one of the most powerful features of React. By now, you’ve already used useState for toggling UI (like showing/hiding content) or handling simple values (like counters). But real-world applications […]
Day 8: Lists and Keys in React.js
If you’ve been following along in our React learning series, you already know how to handle events, forms, and conditional rendering. Now let’s take the next step: displaying dynamic lists of data. This is done using Lists and Keys in React . This is one of the most common patterns in React apps—whether you’re building […]
JavaScript Tutorial – Day 2: Hello World and Code Structure
Welcome back to our JavaScript tutorial series! 🎉 Yesterday in Day 1, we explored what JavaScript is, why it matters, and we even wrote our very first program using alert() and console.log(). Today, in Day 2, we’ll go one step further and learn how to properly structure JavaScript code in a webpage. By the end […]