Ganesh Rama HegdeforDesign Patterns in Software Blogdesignpatterns.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...Discuss·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...Discuss·1 like·125 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...Discuss·38 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...Discussprototype
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 ...DiscussJavaScript
Threeaidthreeaid.hashnode.dev·Jun 27, 20244 Ways to Accelerate Your Prototyping Process“Lean UX” is the new approach. Summarizing its philosophy: if a picture is worth 1,000 words, then a prototype is worth 1,000 pictures (with apologies to Ben Shneiderman). In an era where delivering more with fewer resources is essential, how can we ...Discuss·10 likesUI
Oluwasegun Idowuengrshege.hashnode.dev·Jun 3, 2024Design Practice (Issue #2)This is my second design practice and I have just created the animation of this interactive toggle button in Figma. Check out the result of my practice.🔥 https://youtu.be/jMdxej3_eDw?si=ay0vEVTiSCFbdX3f 🎵 Background Sound: Future is Now by Flyin....DiscussProduct DesignSmart animate
Carolin Jamesbreakthecode.hashnode.dev·Jun 1, 2024Do you need a constructor every time you implement prototypal inheritance ?🤔💭Well the answer is NO. Hey there ! Welcome back to another read. It is possible in Javascript to manually implement prototypal inheritance. Well how ?Lets look at the code below. //object literal (prototype) const empProto = { setEmpLocation(locati...DiscussEverything you need to know about JS!js
Nicolas de Souzanicolasdesouza.com·May 21, 2024Design Patterns - PrototypeUma das primeiras coisas que aprendemos na programação, seja qual for a linguagem, é como copiar valor de uma variável para outra. Uma atividade extremamente comum mas que rende situações interessantes no nosso dia a dia. Definição É um padrão criaci...DiscussDesign Patternsdesign patterns
Vaibhav Kashyapvaibhav16.hashnode.dev·May 16, 2024JavaScript PrototypeUnderstanding JavaScript is sometimes nothing less than an Adventure, today I am sharing with you one of JavaScript's concept called the prototypes. I never went into this detail with the prototypes and what made me to dive deep into this was prototy...Discuss·1 like·34 readsJavaScript