var obj = {
hello: function(n) {
return obj.hello(n-1) + n;
}
var obj2 = {hello: obj.hello};
obj = {};
console.log(obj2.hello(3));
慕田峪7331174
相关分类