Palak Bansalpalakbansal.hashnode.dev路Sep 19, 2024Module PatternThe module pattern in javascript allows you to split up your code into smaller, reusable pieces along with keeping certain values within your file private. How to use this technique in React in an effective manner? import React, { useState } from 're...React Chroniclesmodule-pattern
Vivekheyvivek.com路Aug 26, 2024馃攳 Unlocking Hidden Power: Essential Yet Overlooked JavaScript Concepts Every Beginner Should Know 馃挕JavaScript is a versatile and powerful language that continues to evolve, with new features and concepts being introduced regularly. While many developers are familiar with the basics and popular features of JavaScript, there are several lesser-known...12 likes路245 readsJavaScript
Nehal Ingolelearnwithnehal.hashnode.dev路Apr 20, 2024Day_7 Mastering Infrastructure Management with TerraformIntroduction In the dynamic landscape of cloud infrastructure management, Terraform emerges as a game-changer, empowering developers and DevOps engineers to orchestrate complex architectures with unparalleled ease and efficiency. At the heart of Terr...DevopsTerraform
Nandan Kumarblog.nandan.dev路Aug 18, 2023Design Patterns: Module Design Pattern in JavaScriptModule Design Pattern is a way to encapsulate and organize code in a self-containing module that can expose certain functionalities while keeping the rest of the code private. This helps prevent variable and function name clashes, improves code maint...221 readsFront End - HTML, CSS & JavascriptJavaScript
Dipesh Shivramedssitachi.hashnode.dev路May 20, 2023Demystifying JS ModulesHello! Welcome. It's great to have you here!! Before we unpack how JS Modules work, let us first understand why we need modules in the first place. What are the problems with just using the native JS files? Everything is fine when we have a single JS...3 likes路115 readsJavaScript
Rahul Kumarrahulk.hashnode.dev路Jun 30, 2022Design pattern in JavaScript: Part 1Frontend development has evolved a lot in recent times and everyone is looking to build modular codebases by abstracting components to have a defined separation of concerns. Design patterns are not algorithms or implementations. It鈥檚 more of ideas, a...2 likes路146 readsDesign patterns in JavaScriptJavaScript