Tagged “memory”
-
TIL the stack and heap javascript memory global
The stack is a data structure that JavaScript uses to store static data. The Heap is Dynamic memory allocation, storing objects and functions. Garbage Collection.
-
TIL what matters for JS optimization javascript loops memory
Optimizing your Javascript - Using getElementById() vs querySelector()? Doesn't matter. Loops? Doesn't matter. What matters: Render Blocking code, Repaints and Reflows, Memory allocation
-
TIL about what causes Memory leaks in Javascript javascript advanced-js memory
As long as it is possible to reach it, keep it. Everything else gets yeeted.
See all tags.