Welcome to the Memory Inspector tool demo. Use the buttons below to allocate different types of memory and inspect
them using the Memory Inspector in DevTools.
Creates a fixed-length raw binary data buffer of 50MB
Creates a 50MB Uint8Array of 8-bit unsigned integers
Creates an object with 1 million entries, each containing index, random value and array
data
Creates a string with 10 million 'a' characters
Creates a Map with 1 million entries, each containing index, random value and array
data
Creates a Set with 1 million unique objects, each containing index, random value and array
data
Creates a WeakMap with 1 million weakly referenced key-value pairs
Creates a WeakSet with 1 million weakly referenced objects
How to Use the Memory Inspector
Setup:
Open Chrome DevTools by pressing F12 or right-clicking anywhere and selecting "Inspect"
Click on the "Memory" tab in DevTools (if not visible, click >> to show more tabs)
Taking Snapshots:
Click "Take heap snapshot" in the Memory panel
Wait for the initial snapshot to complete - this is your baseline
Testing Memory Allocation:
Click any of the buttons above to allocate different types of memory
Take another heap snapshot after each allocation
Compare snapshots by selecting them from the left panel to see memory changes
Analysis:
Look for your allocated objects in the snapshot comparison
Observe the size and count of allocated objects
Note how different data structures consume memory differently