ADAkash Deep Chitranshincodechitra.hashnode.dev路Dec 5, 2023 路 1 min readCORS - Cross Origin Resource SharingCORS stands for Cross-Origin Resource Sharing. It is a security feature implemented by web browsers that controls how web pages in one domain can request and interact with resources hosted on another domain. Web browsers have a same-origin policy, wh...00
ADAkash Deep Chitranshincodechitra.hashnode.dev路Dec 5, 2023 路 2 min readExploring the Power of Object.defineProperty() in JavaScriptAs JavaScript developers, we often find ourselves working with objects, manipulating their properties, and defining their behavior. In this blog post, let's delve into the powerful `Object.defineProperty()` method and understand how it can elevate ou...00
ADAkash Deep Chitranshincodechitra.hashnode.dev路Nov 29, 2023 路 11 min readCSS For Me馃挕 CSS is case insensitive. 馃挕 RECOMMENDED: Use Cabab Case for CSS class names. 馃挕 We can check the order in which the styles are applied in Chrome developer tools, here all styles are sorted according to the specificity. 馃挕 What is Cascadin...00
ADAkash Deep Chitranshincodechitra.hashnode.dev路Oct 9, 2023 路 3 min readReact Design PatternsHigher Order Components In React, a Higher-Order Component (HOC) is a design pattern that allows you to reuse component logic. It's a function that takes a component and returns a new component with additional props or behavior. HOCs are a way to sha...00
ADAkash Deep Chitranshincodechitra.hashnode.dev路Oct 8, 2023 路 3 min readProxy Design Pattern In JavaScriptIn JavaScript, a proxy is an object that allows you to intercept and customize operations on another object (known as the target). Proxies provide a way to define custom behavior for fundamental operations like property access, function invocation, a...00