syncfusionsyncfusion-blogs.hashnode.dev·Nov 19, 2024React vs. Next.js: Choosing the Right FrameworkTL;DR: This blog post compares and contrasts the popular JavaScript frameworks React and Next.js. React works well for SPAs and interactive UIs, while Next.js is good for SEO-driven websites and high-performance apps. JavaScript is the language of th...DiscussFront-end Development
Ayusharpcoderreacttonext.hashnode.dev·Nov 12, 2024CSS Grid vs. Flexbox: When to Use Each and WhyAs a frontend developer, two of the most powerful layout tools you can have in your CSS toolkit are CSS Grid and Flexbox. Both are designed to help you create responsive, flexible layouts, but they have different strengths and use cases. Knowing when...Discuss·1 likewebdev
Nitesh Singhspfxdev.hashnode.dev·Nov 9, 2024Unlocking React's Potential: Why Data Mutability Might Be Breaking Your AppLast week, while working on some legacy React code, I stumbled upon a tricky bug: one component just wouldn’t re-render as expected. After a deep dive, I discovered the culprit—data mutation. The component wasn’t re-rendering because its state was be...Discusstips
Sunil Khadkasunilkhadka.hashnode.dev·Nov 6, 2024Controlled vs Uncontrolled Components in React: Pros, Cons, and Use CasesBoth controlled and uncontrolled components are concerned with how data or state is managed inside a react component. While controlled and uncontrolled components can apply more broadly to any component that manages state, they are most commonly used...DiscussReact.jsFrontend Development
Tủ Đá Codingtudacoding.com·Nov 1, 2024Hướng đi nào khi front-end đã "bão hòa"Dạo gần đây, mình có lướt các group tuyển dụng cũng như các bài báo trên các trang mạng xã hội. Có khá nhiều quan điểm về việc ngành CNTT đã “bão hòa“, front-end developer bị ép giá xuống trả lương thấp, 1m2 10 ông code react, AI thay thế front-end. ...DiscussFront-end PerformanceFront-end Development
Andrew Arhangelskife-dev.hashnode.dev·Oct 28, 2024Running Enzyme Tests in React 18: Our Success Story.Like many other companies with mature software, we found ourselves at a crossroads with our React application. The app, initially developed in early 2019, was built with React 16 and used Enzyme for unit testing. Over the past five years, the app gre...DiscussReact
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Oct 26, 2024Day 8: Understanding JavaScript Events – Enhancing InteractivityJavaScript events are at the heart of making web applications interactive, allowing us to respond to user actions like clicks, key presses, mouse movements, and more. In this post, we’ll cover what events are, why they’re essential, different types o...Discuss·10 likesWeb Interactivity
Amena 💫amena.hashnode.dev·Oct 25, 2024Musais Hackathon For FRONTEND DEVELOPERSHello everyone! I'm Amena, and currently working on my Agency, named - "Musais" This Hackathon is organized for all of you to Showcase your frontend web development skills and you can add this project to your portfolio as well. 🔵WHAT DESIGN YOU HAVE...Discuss·12 likes·99 readsFrontend Development
Asawerasawer.hashnode.dev·Oct 24, 2024React "useState" Hook: A Comprehensive Guide for BeginnersWhat is useState? useState is a React hook that allows you to add state to a functional component. Before hooks were introduced in React, you could only manage state using class components. But with hooks, you can now manage state directly in functio...Discuss·10 likesReact
Yasin Sarkaryasinsarkar.hashnode.dev·Oct 18, 2024Understanding Null vs Undefined in JavaScript: Key Differences and Use Cases 🤔In JavaScript, encountering the terms null and undefined is common, but understanding the differences between them is crucial for writing clean and bug-free code. They may seem similar at first glance—both representing the absence of a value—but they...Discuss·9 likes·44 readsJavaScript