Skip to content

Commit

Permalink
Minor code formatting fix (#5550)
Browse files Browse the repository at this point in the history
Fix code formatting
  • Loading branch information
farishan committed Apr 29, 2024
1 parent 8d42807 commit 3f132ca
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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:

Expand Down

0 comments on commit 3f132ca

Please sign in to comment.