© 2023 Hashnode
#prototyping
A prototype chain is a mechanism in JavaScript that allows objects to inherit properties and methods from other objects. Every object in JavaScript has a prototype, which is either another object or n…
Introduction: Now, this is a topic many people ignore but not me😎. I am going to discuss all of the important things related to Javascript prototypes and try to make things as simple as possible. For…
Prerequisites Datatypes Object Try running the below code. We defined a new person object with properties firstname and lastname, and run toString method on the object. const person = { firstna…
Lunacy A great free tool that works on all platforms (Windows, macOS and Linux), has some useful AI features, collaboration and can easily edit sketch, Figma, XD, Avocode files too. Get it here Origa…
What is Object-Oriented programming (OOP)? Object-oriented programming (OOP) is a programming paradigm (Style of code, “how” we write and organize code) based on the concept of objects. We use objec…
The Problem 😒 : Check the code given below 👇 class Student { constructor(private firstName: string, private lastName: string) {} getFullName() { return `${this.firstName} ${this.lastName}`; } } const student = new Student("Vir…
Qu'est-ce qu'un POC, un prototype et un MVP - Explication des différences Pour créer de bons produits numériques, il faut à la fois être innovant et suivre des méthodes éprouvées de développement d'ap…
Hey Learners!👋 Today here I am with another article.😍 In this post, we will discuss what are prototypes in JavaScript, and how they help JavaScript in achieving the concepts of Object-Oriented Progr…
It’s important for Indie Hackers looking to build micro-saas products to have a reliable tech stack that they feel comfortable with. Here’s the tech stack that I currently use to prototype new project…
Prototype Evaluation is a research method that allows you to get useful feedback on your product prototype from your target users. This feedback will help you learn whether there are parts or portions…