gpt4 book ai didi

javascript - 不理解结果 hasOwnProperty

转载 作者:行者123 更新时间:2023-11-30 07:14:31 35 4
gpt4 key购买 nike

为什么是真的?对象中的方法foo怎么写?

Object.prototype.foo = function(obj) {
for(var i in obj) this[i] = obj[i];
};

var obj = {a: 1};

var testObj = {};

testObj.foo(obj)

alert( testObj.hasOwnProperty("foo") );

最佳答案

for ... in 循环遍历目标对象的所有可见属性,包括其原型(prototype)链上的属性。

如果只想传递源对象“自己”的属性,可以加一个测试:

Object.prototype.foo = function(obj) {
for(var i in obj)
if (obj.hasOwnProperty(i))
this[i] = obj[i];
};

关于javascript - 不理解结果 hasOwnProperty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32321577/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com