There is no shortage of stories about great front-end careers. Many of these blog posts tell the truth – careers in web development can be very lucrative. It is also true that as long as someone has desire, she can learn necessary skills and be…
Past few years have seen a lot of developments (improvements) in web development, as well as the quality of interactive web applications. The demand for stylish, functional and dynamic web apps was strong up until 2022. That should continue into 2023. However, starting a career…
Sometimes we need web applications to respond to window size changes. In this article, we will show how to access window width in React, and implement responsivity features for best UX possible. Get window width in React React is one of three main JavaScript-based libraries….
If the user has to fill out a form multiple times, it’s a good idea to reset form after they submit it. Like so: In this article, we will show how to improve User Experience by clearing the form once it is submitted. We will…
Sometimes websites are overloaded with text, images, and other forms of content. The only way to fit all of this information on a screen is to allow scrolling. In this article, we will show you how to implement a scroll to bottom feature in React,…
It’s common to have an array of objects that describe individual items. For example, an array of objects where each object describes an individual person. In this article, we’ll show you how to loop through an array of objects in React. I’ll also show you…
React library is named after its reactive features. Changes to component’s internal state are almost immediately reflected on the screen. This isn’t only about displaying different text. Developers can also dynamically customize web app’s appearance by applying conditional styles or conditional className values. For example,…