Junaid Bin JamanProjunaidbinjaman.com·Sep 20, 2024Advanced Redux: Async Actions, Middleware, and Best Practices for Scalable State ManagementSo, you’ve mastered the basics of Redux Core and can manage synchronous state changes like a pro. But as your application grows, you’ll start encountering scenarios where Redux’s core features aren’t enough. To scale your Redux logic efficiently, han...Discuss·10 likesRedux
Mohamed Abdullajsalchemy.hashnode.dev·Sep 9, 2024Introduction to TypescriptTypeScript is a statically typed programming language that is a superset of JavaScript. It was developed and maintained by Microsoft. TypeScript was created to address the challenges of building large-scale JavaScript applications and add optional ty...DiscussTypescript - Beginner to AdvanceTypeScript
Subham Gopesavioursubham.hashnode.dev·Aug 25, 2024Explain Call, Apply, Bind methods in JavascriptIn javascript, function are first class citizens, meaning they can be treated like any other variables. This flexibility allows us to manipulate them in various ways. However, when working with the complex objects controlling the value of this become...DiscussJavaScript
Ranjeet Singhrsbcode.hashnode.dev·Aug 16, 2024Coercion JS Part 2Type Conversion ToPrimitive(input,PreffredType ) PreffredType is optional argument In case where input can be converted into multiple type, we take the decesion using this. Convert the input into non-object type. Type Conversion discusses the co...Discuss·10 likesJavaScript
Asif Siddiquesemi-colon.hashnode.dev·Jul 30, 2024Exploring JavaScript Generators: Simplifying Complex IterationsThe function* declaration creates a binding of a new generator function to a given name. A generator function can be exited and later re-entered, with its context (variable bindings) saved across re-entrances. The above definition from MDN might seem...DiscussJavaScript
Jaffar Amanjaffaraman.hashnode.dev·Jul 7, 2024JavaScript Array Methods and Promises: A Comprehensive GuideUnderstanding JavaScript Array Methods: find, findIndex, filter, map, forEach JavaScript provides several powerful methods for working with arrays. These methods can streamline your code and make it more efficient. Let’s dive into some commonly used ...Discuss·1 like·38 readsSMIT Batch 11HTML5
Moyez Rabbanimoyez.hashnode.dev·May 23, 2024Singleton Pattern in Software EngineeringToday I learned about Singleton design pattern in Software Engineering. And, I thought why not publish an article on it. What is Singleton? Singleton is a design pattern in Software Engineering where you can create more than one instance of a class. ...DiscussSoftware Engineering
Tiger Abroditigerabrodi.blog·May 19, 2024Proxies in JavaScript give your objects superpowerProxies in JavaScript Proxies are a way for you to customize the behavior of objects in JavaScript. For example, let's say you always wanna log when a property is accessed on an object. You can use a proxy for that. It's a way to create a more "power...Discuss·2 likes·216 readsWeb Development
Mainul Hasanhashnode.mmainulhasan.com·Mar 13, 202425 Unnoticeable Features of JavaScriptOften, as developers, we write similar types of code, falling into a pattern that, while comfortable, can sometimes feel mundane. However, the world of JavaScript is vast, filled with advanced features that, when discovered and used, can transform ou...Discuss·10 likesadvance javascript
gunjan agarwalgunjanagarwal.hashnode.dev·Mar 9, 2024React Memory LeaksIntroduction: Memory leaks in React applications can be a silent performance killer, impacting user experience and overall application efficiency. In this blog post, we'll explore the causes behind memory leaks, discuss effective detection strategies...Discuss·10 likes·62 readsReact