Y
Hacker News
new
|
ask
|
show
|
jobs
by
aetherspawn
3019 days ago
I think this is true because they hold a reference in window.
1 comments
mulrian
3019 days ago
Sure that will prevent gc, but that doesn't mean it's a memory leak
link
dspillett
3019 days ago
It is if the variable is accidentally in global scope due to hoisting if it is not explicitly defined in a finer scope. Not an issue in strict mode, you'll get a reference error instead of an implied global.
link
rootlocus
3019 days ago
If you're never going to use it again, and you're never going to free it, it's a memory leak.
link
Sawamara
3018 days ago
No, it is not. A memory leak has to grow. Without the leak part, it is just ...allocated memory.
link