Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungI audited my own ML linter and had to withdraw its best evidence(21.09.2026 um 22:54 Uhr)
Sichere ProgrammierungQuantum Result Validation for Distributed Computing Systems(21.09.2026 um 22:54 Uhr)
Sichere ProgrammierungJWT Authentication and Role-Based Access Control in LocalHands(21.09.2026 um 22:56 Uhr)
Sichere ProgrammierungStochastic Parrot or Alien Mind?(21.09.2026 um 22:56 Uhr)
Sichere ProgrammierungBuilding AI for the Physical World Is a Different Engineering Problem(21.09.2026 um 22:58 Uhr)
Sichere ProgrammierungI audited my own ML linter and had to withdraw its best evidence(21.09.2026 um 22:54 Uhr)
Sichere ProgrammierungQuantum Result Validation for Distributed Computing Systems(21.09.2026 um 22:54 Uhr)
Sichere ProgrammierungJWT Authentication and Role-Based Access Control in LocalHands(21.09.2026 um 22:56 Uhr)
Sichere ProgrammierungStochastic Parrot or Alien Mind?(21.09.2026 um 22:56 Uhr)
Sichere ProgrammierungBuilding AI for the Physical World Is a Different Engineering Problem(21.09.2026 um 22:58 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Understanding JavaScript Prototypes: A Comprehensive Guide to Inheritance and Method Sharing

JavaScript Prototypes In JavaScript, a prototype is an object that serves as a blueprint for other objects. Every object in JavaScript has a prototype, and the prototype itself is an object that contains properties and methods that are…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

JavaScript Prototypes



In JavaScript, a prototype is an object that serves as a blueprint for other objects. Every object in JavaScript has a prototype, and the prototype itself is an object that contains properties and methods that are shared by all instances of the object. This concept is central to JavaScript's inheritance mechanism.






1. What is a Prototype?



Every JavaScript object has an internal property called [[Prototype]]. This property refers to another object from which it inherits properties and methods. The prototype of an object can be accessed using the __proto__ property (in most browsers) or Object.getPrototypeOf().



For instance, when you create a new object, it inherits properties and methods from the prototype object of its constructor.




function Person(name, age) {
this.name = name;
this.age = age;
}

// Adding a method to the prototype of Person
Person.prototype.greet = function() {
console.log("Hello, " + this.name);
};

const person1 = new Person("John", 30);
person1.greet(); // Output: "Hello, John"









2. Prototype Chain



In JavaScript, objects are linked together in a prototype chain. When a property or method is called on an object, JavaScript first checks if that property or method exists on the object itself. If it doesn’t, JavaScript checks the object’s prototype. If it’s not found there, JavaScript continues checking up the chain of prototypes until it reaches Object.prototype, which is the root prototype object. If the property or method is still not found, undefined is returned.




function Animal(name) {
this.name = name;
}

Animal.prototype.speak = function() {
console.log(this.name + " makes a noise.");
};

function Dog(name) {
Animal.call(this, name); // Inherit properties from Animal
}

Dog.prototype = Object.create(Animal.prototype); // Set the prototype chain
Dog.prototype.constructor = Dog; // Fix the constructor reference

const dog1 = new Dog("Buddy");
dog1.speak(); // Output: "Buddy makes a noise."









3. Adding Methods to Prototypes



Methods can be added to the prototype of a constructor function, which makes the methods accessible to all instances created by that constructor. This is a more efficient way to define shared methods, rather than adding them directly to each instance.




function Car(make, model) {
this.make = make;
this.model = model;
}

// Adding a method to the prototype
Car.prototype.displayInfo = function() {
console.log(this.make + " " + this.model);
};

const car1 = new Car("Toyota", "Corolla");
car1.displayInfo(); // Output: "Toyota Corolla"









4. Constructor and Prototype Relationship



The prototype object is closely tied to the constructor function. When you use the new keyword to create an instance of an object, JavaScript sets the [[Prototype]] of that instance to the prototype of the constructor function.




function Student(name, grade) {
this.name = name;
this.grade = grade;
}

Student.prototype.study = function() {
console.log(this.name + " is studying.");
};

const student1 = new Student("Alice", "A");
console.log(student1.__proto__ === Student.prototype); // true









5. Prototype Inheritance



Prototype inheritance allows one object to inherit properties and methods from another. This is a form of object-oriented inheritance in JavaScript. By setting an object's prototype to another object's prototype, the first object can access the properties and methods of the second.




function Animal() {
this.legs = 4;
}

Animal.prototype.walk = function() {
console.log("Walking...");
};

function Dog(name) {
this.name = name;
}

Dog.prototype = Object.create(Animal.prototype); // Inherit from Animal
Dog.prototype.constructor = Dog; // Fix the constructor reference

const dog2 = new Dog("Rex");
console.log(dog2.legs); // Output: 4
dog2.walk(); // Output: "Walking..."









6. Object.getPrototypeOf() and Object.setPrototypeOf()



JavaScript provides the Object.getPrototypeOf() and Object.setPrototypeOf() methods to retrieve and modify the prototype of an object. However, altering the prototype at runtime is not recommended because it can have performance implications.




const obj = {};
const proto = { greet() { console.log("Hello!"); } };

Object.setPrototypeOf(obj, proto);
obj.greet(); // Output: "Hello!"









7. Prototype and Performance



While prototypes provide an efficient way of sharing methods and properties, changing an object's prototype after creation can have performance drawbacks. It’s best practice to set up prototypes in a way that doesn’t need modification at runtime.






8. Summary of Key Points





  • Every object has a prototype, and this prototype may also have a prototype, forming a prototype chain.

  • The prototype is a shared object from which the object inherits properties and methods.

  • You can define shared methods in a constructor function's prototype.


  • Inheritance in JavaScript is achieved by linking an object’s prototype to another object's prototype.


  • Object.getPrototypeOf() and Object.setPrototypeOf() allow you to manipulate an object’s prototype.






Conclusion



Prototypes are a powerful feature in JavaScript that enable efficient inheritance and method sharing. Understanding how they work is crucial for writing more efficient and object-oriented JavaScript code.






Hi, I'm Abhay Singh Kathayat!

I am a full-stack developer with expertise in both front-end and back-end technologies. I work with a variety of programming languages and frameworks to build efficient, scalable, and user-friendly applications.

Feel free to reach out to me at my business email: [email protected].

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Understanding JavaScript Prototypes: A Comprehensive Guide to Inheritance and Method Sharing

Thematisch verwandte Begriffe: Understanding, JavaScript, Prototypes, Comprehensive · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-79918 | MaxKB is an open-source AI assistant for enterprise. Prior to version 2.…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick