From 3f132ca632f2c97edb440f9da642bc7965be4bea Mon Sep 17 00:00:00 2001 From: Faris Han Date: Mon, 29 Apr 2024 17:40:10 +0700 Subject: [PATCH] Minor code formatting fix (#5550) Fix code formatting --- .../content/116-javascript-memory-management/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/javascript/content/116-javascript-memory-management/index.md b/src/data/roadmaps/javascript/content/116-javascript-memory-management/index.md index fbbb79832105..e63032fc31e4 100644 --- a/src/data/roadmaps/javascript/content/116-javascript-memory-management/index.md +++ b/src/data/roadmaps/javascript/content/116-javascript-memory-management/index.md @@ -1,6 +1,6 @@ # Memory Management -Low-level languages like C, have manual memory management primitives such as malloc() and free(). In contrast, JavaScript automatically allocates memory when objects are created and frees it when they are not used anymore (garbage collection). This automaticity is a potential source of confusion: it can give developers the false impression that they don't need to worry about memory management. +Low-level languages like C, have manual memory management primitives such as `malloc()` and `free()`. In contrast, JavaScript automatically allocates memory when objects are created and frees it when they are not used anymore (garbage collection). This automaticity is a potential source of confusion: it can give developers the false impression that they don't need to worry about memory management. Visit the following resources to learn more: