Y
Hacker News
new
|
ask
|
show
|
jobs
by
mulrian
3024 days ago
Sure that will prevent gc, but that doesn't mean it's a memory leak
2 comments
dspillett
3024 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
3024 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
3024 days ago
No, it is not. A memory leak has to grow. Without the leak part, it is just ...allocated memory.
link