diff --git a/content/roadmaps/106-javascript/content/102-javascript-datatypes/101-object/100-prototype.md b/content/roadmaps/106-javascript/content/102-javascript-datatypes/101-object/100-prototype.md
index 140ce777b..20bdf20c0 100644
--- a/content/roadmaps/106-javascript/content/102-javascript-datatypes/101-object/100-prototype.md
+++ b/content/roadmaps/106-javascript/content/102-javascript-datatypes/101-object/100-prototype.md
@@ -1 +1,8 @@
-# Prototype
\ No newline at end of file
+# 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.
+
+Free Content
+Prototypes in JavaScript - A Comprehensive Guide
+Prototypes, Inheritance
+Object prototypes - MDN