如题,下面代码里数组可以改变,但是函数却无法改变: var human = { say:function(){ console.log("我是人类"); }, arr:[1,2,5,4] } human.say(); var people = Object.create(human); people.say = function(){ console.log("我改变了他"); } people.arr.push("hello"); people.say(); //输出的是"我改变了他" var anotherPeople = Object.create(human); anotherPeople.say(); //没有变化,还是"我是人类" console.log(anotherPeople.arr); //数组arr =[1,2,5,4,'hello']
1 回答
慕沐林林
TA贡献2016条经验 获得超9个赞
你这个问题就好比:
var a = {data:1};
var b=a;
b={data:3};
console.log(a);//{data:1}
var a = {data:1};
var b=a;
b.data=3;
console.log(a);//{data:3}
你得分清楚操作对象和改变变量的指向。。。
添加回答
举报
0/150
提交
取消