Memory Hands-On 1
- Open Chrome DevTools (Press F12 or Right Click > Inspect)
- Click on the "Memory" tab in DevTools
- Make sure you have a clean start - reload the page if needed or use incognito
Exercise 1: Memory Monster
Goal: Observe how creating many objects affects memory allocation
Steps:
- Take initial snapshot
- Click "Feed the Memory Monster" and watch memory grow
- Take second snapshot
- Click "Put Monster on Diet" to clean up
- Take final snapshot and compare all three
- Try to find all ways to see the new objects. How many ways did you spot? 🕵️♂️
- Pro tip: If your computer starts sweating, you're doing it right! 💦
- Note: No actual monsters were harmed in this memory experiment 🧟♂️
Creates 1000 objects with large arrays, consuming memory
Clears all created objects to free up memory
Exercise 2: The Leaky Party
Goal: Identify memory leaks caused by event listeners
Steps:
- Select "Record allocation timeline" in the Memory tab
- Click "Start" to begin recording
- Start the Party! Let those bytes boogie and watch memory do the disco! 💃🕺
- Click "Stop" to analyze the timeline
- Look for memory spikes in the timeline and use the timeline selector (blue markers) to analyze each spike
individually
- Try the same Click "Start Party" multiple times
- Take snapshot and look for accumulated event listeners
Creates dancers with setInterval that never gets cleared, causing a memory leak
Exercise 3: The Infinity Loop
Goal: Understand circular references in memory
Steps:
- Take an initial memory snapshot as baseline
- Click "Create Loop" button to generate circular references
- Take a second snapshot and examine:
- Look for 2 objects that reference each other
- Find 2 arrays that are part of the circular chain
- Note the memory size of each component
- Click "Break Loop" button to remove references
- Take final snapshot to verify cleanup
Creates objects that reference each other in a circular way
Breaks the circular reference by resetting objects
Exercise 4: Memory Linked List
Goal: Learn about linked list memory management and references
Steps:
- Take an initial memory snapshot
- Click "Create Linked List" button to generate nodes
- Take a second snapshot and examine:
- Find all nodes in the list
- Look at how nodes connect to each other
- Note the memory size of each node
- Understanding node connections:
- Find the head node (first in list)
- Click each 'next' pointer to follow the chain
- Notice how 'Distance' values change through the chain
- Try these experiments:
- Right-click any node → Store as global variable
- Break the chain: set node.next = null
- Run garbage collection
- Take snapshot - check which nodes remained
- Advanced testing:
- Store a middle node as global variable
- Clear the head node
- Check which nodes stay in memory
- Click "Clear List" to remove everything
- Take final snapshot to verify cleanup
Creates a linked list with multiple connected nodes
Removes all nodes and clears references
Exercise 5: DOM Family Tree
Goal: Learn about DOM element memory management
Steps:
- Take an initial memory snapshot before starting
- Click "Grow Family Tree" to generate DOM elements
- Take a second snapshot and examine:
- Find newly created DOM elements
- Note the total size of the DOM tree
- Click "Prune Tree" to remove all elements
- Take final snapshot to confirm cleanup
- Investigate the DOM elements:
- Look at the "Distance" value - it shows how many references away from GC roots
- Notice the window icon next to Array objects - indicates global scope
- Examine why div elements contain document references
- Explore element relationships:
- Select a div element and check the Retainers tab
- Store an element as global variable (temp1)
- Use console to explore: temp1.parentElement
- Try finding other element relationships
- Advanced: Try modifying depth and children parameters to see memory impact
Creates a large tree of nested DOM elements
Removes all created DOM elements
📝 Memory Profiling Tips:
- Use the search box in snapshots to find specific objects
- Pay attention to the "Distance" column to find memory leaks
- Look for "Detached" elements which indicate potential leaks
- Use "Record allocation timeline" to track memory changes in real-time
- Check "Shallow size" vs "Retained size" to understand true memory impact