1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-09 00:30:40 +02:00

Added descriptions and resources to Prototypes - JavaScript Roadmap (#1686)

* Added descriptions and resources

* Update content/roadmaps/106-javascript/content/102-javascript-datatypes/101-object/100-prototype.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
CodeGuage
2022-09-04 19:00:23 +05:00
committed by GitHub
parent 29430e423d
commit 5ac971878f

View File

@@ -1 +1,8 @@
# Prototype
# Prototypes
JavaScript is an object-oriented language built around a prototype model. In JavaScript, every object inherits properties from its prototype, if there is any. A prototype is simply an object from which another object inherits properties. To create complex programs using JavaScript, one has to be proficient in working with prototypes — they form the very core of OOP in the language.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.codeguage.com/courses/js/objects-prototypes'>Prototypes in JavaScript - A Comprehensive Guide</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://javascript.info/prototypes'>Prototypes, Inheritance</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/Object_prototypes'>Object prototypes - MDN</BadgeLink>