标签: javascript memory-leaks polymer
我有一个类方法-
checkIfRequestChanged() { let utils = SharedUtils.DataObjectFetchUtil //this is a reference to a function based in window scope
我担心这会阻止实例被垃圾回收,因为该方法保留了对全局变量的引用。
这是正确的吗?我如何证明这一点?