diff --git a/content/roadmaps/106-javascript/content/116-javascript-memory-management/100-memory-lifecycle.md b/content/roadmaps/106-javascript/content/116-javascript-memory-management/100-memory-lifecycle.md index ba47a6c19..bcfd43976 100644 --- a/content/roadmaps/106-javascript/content/116-javascript-memory-management/100-memory-lifecycle.md +++ b/content/roadmaps/106-javascript/content/116-javascript-memory-management/100-memory-lifecycle.md @@ -7,3 +7,7 @@ Regardless of the programming language, the memory life cycle is pretty much alw - Release the allocated memory when it is not needed anymore The second part is explicit in all languages. The first and last parts are explicit in low-level languages but are mostly implicit in high-level languages like JavaScript. + +Free Content +MDN docs - Memory Management +Lifecycle in Memory Management