You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionPerson(name,age,job){this.name=name;this.age=age;this.job=job;this.sayName=function(){console.log(this.name);}}letperson1=newPerson('nick',29,'程序员')letperson2=newPerson('tom',28,'摄影师')person1.sayName();// nickperson2.sayName();// tom
原型链关系:
The text was updated successfully, but these errors were encountered:
原型链关系:
The text was updated successfully, but these errors were encountered: