diff --git a/content/roadmaps/107-nodejs/content/116-nodejs-more-debugging/100-memory-leaks/100-garbage-collection.md b/content/roadmaps/107-nodejs/content/116-nodejs-more-debugging/100-memory-leaks/100-garbage-collection.md
index 2e9dd7ee1..4a41d0419 100644
--- a/content/roadmaps/107-nodejs/content/116-nodejs-more-debugging/100-memory-leaks/100-garbage-collection.md
+++ b/content/roadmaps/107-nodejs/content/116-nodejs-more-debugging/100-memory-leaks/100-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