Question 6 of 10Pro Only
What causes memory leaks in JavaScript applications? How can you identify and prevent them?
Sample answer preview
## What is a Memory Leak? Memory that is no longer needed but isn't released back to the system. In JavaScript, this happens when references to objects are unintentionally retained. ## Common Causes ### 1.
memory leaksgarbage collectionevent listenersclosuresWeakMapChrome DevTools