当我们创建这样的对象时
function Person(first,last){
this.first = first;
this.last = last;
this.full = function (){
alert(this.first + " " + this.last);
}
}
obj = new Person('abdul','raziq');
我们是否也可以在 obj 的原型中添加类似这样的东西
obj.prototype = 'some functions or anything ';
或者一旦我们创建了对象就不可能了?
并且在 person 对象上有一个__proto__
属性
对象。__proto__
但是当我访问 obj.prototype 属性时它的未定义?
有人可以用简单的方式解释吗