向内置对象添加功能有什么缺点吗?

时间:2019-03-16 03:49:02

标签: javascript memory-leaks

使用原型链向内置对象添加功能是否存在内存泄漏或一般性缺陷?例如:

Set.prototype.isSubset = function(otherSet) {
    for (let e in this){
        if(!otherSet.has(e)) return false;
    }
    return true;
}

0 个答案:

没有答案