React.lazy and Suspense make React developer life easy. React.lazy helps in code-splitting and Suspense backup React.lazy in loading state. Before, we go into details let’s start things simply. let’s be Continue Reading
Dinesh
How to format JavaScript date and time with Intl.DateFormat
Intl Object in JavaScript Intl ( internationalization )is an in-built Object in JavaScript for language-sensitive formatting. It includes constructors for formatting strings, lists, numbers, and dates and times. In this Continue Reading
A simple guide to JavaScript Date Object
What is a javascript Date Object? JavaScript Date-object is a built-in object that stores date and time. It provides a variety of helpful methods for developers to set and get Continue Reading
How to work with props in Styled-components
One of the strengths of styled components is adapting styles based on the props. Props in Styled-components can be utilized to make changes, dynamically and conditionally, with JavaScript. You can Continue Reading
Learn the very basics of Styled-components under 10 minutes
What is styled-components? In simple terms, it is a component that you can use in React applications. The purpose of the Styled- component is to create a specific HTML element Continue Reading
How to use React useMemo hook to improve performance
React useMemo hook One of the ways that you can improve the performance of React apps is by using the useMemo hook. This hook prevents expensive calculations from running on Continue Reading
How to create GitHub actions with attributes
In this post, I am going to talk about GitHub action attributes, and how to incorporate these attributes in a workflow file. If you are reading this post for the Continue Reading
How to create React Bootstrap carousel for landing pages
You may have encountered a situation where you need to add a carousel to the landing pages. A carousel is a slide show of images or videos or a combination Continue Reading
All you need to know to start a Node + Redis app
What is Redis? Redis is a key-value pair in-memory data storage structure that you can use not only as a database but also as a cache, message broker, and streaming Continue Reading
How to make AJAX calls in WordPress
What is AJAX? Ajax ( Asynchronous JavaScript and XML ) has been in web development as a way of communicating between the front end and the back end of web applications for quite Continue Reading