What is the purpose of the Chrome DevTools 'Memory' panel?
The Chrome DevTools Memory panel is designed to: 1) Capture heap snapshots showing memory distribution at specific points in time, 2) Record memory allocation over time to identify patterns and leaks, 3) Compare snapshots to identify objects that aren't being properly garbage collected, 4) Analyze retained memory and identify dominator objects, 5) Provide allocation profiling to track where objects are being created, 6) Help developers identify memory leaks through visualization and data analysis, 7) Show memory usage breakdowns by object type and module, 8) Enable detailed investigation of object references to understand why specific objects are being retained in memory.