Minor code formatting fix (#5550)

Fix code formatting
pull/5577/head
Faris Han 6 months ago committed by GitHub
parent 8d42807d0c
commit 3f132ca632
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/javascript/content/116-javascript-memory-management/index.md

@ -1,6 +1,6 @@
# Memory Management # 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: Visit the following resources to learn more:

Loading…
Cancel
Save