标签: javascript memory-leaks
使用原型链向内置对象添加功能是否存在内存泄漏或一般性缺陷?例如:
Set.prototype.isSubset = function(otherSet) { for (let e in this){ if(!otherSet.has(e)) return false; } return true; }