Sajal Sahakumtechexplore.hashnode.dev·Dec 9, 2024Prototype Design PatternThe Prototype Design Pattern is a creational pattern that allows objects to be cloned instead of creating new instances from scratch. This pattern is particularly useful when object creation is resource-intensive or when you need a copy of an object ...prototypedesignpattern
Quantum Innovation Advisorshellahacks.hashnode.dev·Dec 8, 2024Hackathon #2 Part 219 hour Ago: I started this Hackathon. I started with getting the basics of NextJS under my belt building on top of my ReactJS and Javascript Knowledge. In the process I have learned Typescript as well. I am not yet complete with NextJS I have about ...Hackathon Serieshackathon
Jack Pritom Sorenjps27cse.hashnode.dev·Nov 23, 2024Understanding JavaScript Prototypes: A Key to Mastering OOPBecause JavaScript is a prototype-based language, objects in the language inherit attributes and functions from prototypes. This design pattern is essential to comprehending JavaScript's object-oriented programming (OOP). Understanding prototypes and...JavaScript
Shikhor Royshikhorroy.hashnode.dev·Nov 14, 2024Design Patterns - Prototype (in Java)Definition The Prototype Design Pattern is a creational pattern that allows you to create new objects by copying an existing object, known as the prototype. The copy could be shallow or deep, depending on our requirements. Motivation Let’s consider a...Design Patternsdesign patterns
David Gostindgostin.hashnode.dev·Nov 8, 2024Prototypes and Prototypal Inheritance in JavascriptJavaScript uses prototypal inheritance to share properties and methods between objects. Here’s a basic example showing how prototypes and prototypal inheritance work. Basic Example of a Prototype // Creating a constructor function function Person(nam...prototype
Ganesh Rama Hegdedesignpatterns.hashnode.dev·Sep 1, 2024Creational Design PatternsCreational design patterns are a category of design patterns in software development that focus on how objects are created. Their primary goal is to abstract the instantiation process, making it more flexible and reusable. By controlling the creation...1 likeTypes
Thirdy Gayaressoftware-engineer.thirdygayares.com·Aug 26, 2024Low Fidelity PrototypeWhat is a Low-fidelity prototype? A low-fidelity prototype is a simple and rough version of a design used to represent and communicate the basic structure, layout, and flow of an application or product. It is usually created with minimal detail, ofte...1 like·192 readsFigmalow fidelity
Darshit Anjariadarshitanjaria.hashnode.dev·Aug 21, 2024Mastering JavaScript Prototypal Inheritance: Build Smarter, Reusable CodeWhat you are going to learn. In this article, we'll dive deep into the concept of prototypal inheritance, exploring how it works, why it's so powerful, and how it can be used to create flexible and dynamic JavaScript applications. Introduction of Pro...40 readsJavaScript
Shubham Mathurlearnjswithshubham.hashnode.dev·Jul 21, 2024A Guide to JavaScript Prototypal InheritanceTL;DR At core, Prototypical inheritance in JavaScript is a way for an object to inherit the properties and methods from other object. In JavaScript object has a special and hidden property [[Prototype]] This property can either be null or reference t...prototype
Nile Bitsnilebits.hashnode.dev·Jul 7, 2024The Ultimate Guide to JavaScript ObjectsJavaScript objects are one of the fundamental aspects of the language, providing a way to structure and manipulate data. This guide will cover everything you need to know about JavaScript objects, from the basics to advanced concepts, with plenty of ...JavaScript