Explaining WebSockets and crafting a simple chat app using Socket.ioWhat is WebSockets? WebSocket is a protocol that enables two-way communication between a client (typically a web browser) and a server over a single, long-lived connection. It allows real-time data exchange without the overhead of traditional request...Sep 18, 2023·8 min read
Understanding “==” (Abstract Equality) and “===” (Strict Equality) in JavaScriptA lot of people including me had a misconception that in JavaScript “==” doesn’t check type and “===” does, but sometimes we have to unlearn some things. So before understanding these two equalities we have to understand Coercion. What is Coercion Co...Apr 9, 2023·6 min read
How to increase web accessibility scoreWhat is web accessibility? Web accessibility refers to the practice of designing and developing websites that are usable and accessible to people with disabilities, including those who have visual, auditory, motor, or cognitive impairments. The goal ...Mar 25, 2023·4 min read