Memory leak
Memory that's allocated but never released — the app grows until it crashes.
In languages without GC: missing free(). With GC: accidental references that prevent the GC from cleaning up (event listeners, global caches). Diagnosed with heap snapshots and profilers.