WebSockets: Unleashing Enchanting Real-Time MagicWhat are WebSockets? WebSockets enable real-time, bidirectional (full-duplex) communication between clients and the server over a single, long-lived TCP connection. What does it mean by ”real-time, bidirectional( full-duplex ) communication”? This me...Sep 12, 2023·10 min read
Understanding JavaScript String: an easy beginner's guide with examplesThe JavaScript string is a fundamental topic that every developer needs to know, whether you specialize in front-end or back-end development. A guide to JavaScript strings is essential for gaining a sound understanding of this topic. What is a JavaSc...Mar 23, 2023·9 min read
How to create React functional components in TypeScriptTypeScript is a superset of JavaScript. Unlike JavaScript, Which is dynamically typed, it is statically typed. This means you will know the types of variables used in your code at the compile time. This helps you as a developer to check for typed-re...Feb 24, 2023·4 min read
Lazy React makes code-splitting easyReact.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 familiar with some background knowledge. What i...Jan 27, 2023·5 min read
How to format JavaScript date and time with Intl.DateFormatIntl 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 post, I am going to talk about...Jan 21, 2023·5 min read
A simple guide to JavaScript Date ObjectWhat 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 dates and times in different forms. It is useful to have some basic knowle...Jan 20, 2023·5 min read
How to work with props in Styled-componentsOne 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 also use predefined special props to change the overr...Jan 4, 2023·5 min read