标签:
var foo = {
hasOwnProperty: function() {
return false;
},
bar: ‘Here be dragons‘
};
foo.hasOwnProperty(‘bar‘); // 总是返回 false
// 使用{}对象的 hasOwnProperty,并将其上下为设置为foo
{}.hasOwnProperty.call(foo, ‘bar‘); // true
标签:
原文地址:http://www.cnblogs.com/songjum/p/5272249.html