diff --git a/content/roadmaps/106-javascript/content/116-javascript-memory-management/101-garbage-collection.md b/content/roadmaps/106-javascript/content/116-javascript-memory-management/101-garbage-collection.md
index 2e9dd7ee1..4a41d0419 100644
--- a/content/roadmaps/106-javascript/content/116-javascript-memory-management/101-garbage-collection.md
+++ b/content/roadmaps/106-javascript/content/116-javascript-memory-management/101-garbage-collection.md
@@ -1 +1,6 @@
-# Garbage collection
\ No newline at end of file
+# Garbage Collection
+
+Memory management in JavaScript is performed automatically and invisibly to us. We create primitives, objects, functions… All that takes memory. The main concept of memory management in JavaScript is reachability.
+
+JavaScript Garbage Collection
+Memory Management in JavaScript