madhavan.hashnode.devmax-width and width in CSSThe max-width and width properties in CSS are used to control the width of an element, but they have some important distinctions: width: This property sets the exact width of an element. It specifies the width in pixels, percentages, or other length...Jul 8, 2023·2 min read
madhavan.hashnode.devmax-height and height in CSSThe max-height and height properties in CSS are used to control the height of an element, but they have some key differences: height: This property sets the exact height of an element. It specifies the height in pixels, percentages, or other length ...Jul 8, 2023·2 min read
madhavan.hashnode.devVariable naming conventions in JavaScriptIn JavaScript, it is recommended to follow certain naming conventions for variables to improve code readability and maintainability. While there is no strict rule enforced by the language, the following conventions are widely used: Use descriptive n...Jun 12, 2023·2 min read
madhavan.hashnode.devNamed exports vs Default exportsIn JavaScript, there are two ways to export values from a module: Named exports and default exports Named export A named export allows you to export one or more values from a module using a specific name. This means that when you import the expor...May 10, 2023·2 min read
madhavan.hashnode.devLinked List - ApplicationsA linked list is a data structure that consists of a sequence of nodes, where each node contains an element of data and a reference to the next node in the list. Linked lists are often used in applications where dynamic memory allocation is required,...Jan 15, 2023·1 min read