diff --git a/content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md b/content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md
index 58f2fde18..b622c8755 100644
--- a/content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md
+++ b/content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md
@@ -1 +1,6 @@
-# Javascript data structures
\ No newline at end of file
+# Data Structures
+
+A Data structure is a format to organize, manage and store data in a way that allows efficient access and modification. JavaScript has primitive (built-in) and non-primitive (not built-in) data structures. Primitive data structures come by default with the programming language and you can implement them out of the box (like arrays and objects). Non-primitive data structures don't come by default and you have to code them up if you want to use them.
+
+Free Content
+ Data structures