[8 kyu]Broken Greetings
你这小孩看到长辈怎么不打招呼⌚️2016.03.15
怪兽的属性:
&
怪兽的技能:
无
大木博士的图鉴:
把它[greet函数]弄好来,让他可以好好地欢迎客人!!
战斗记录仪回放:
function Person(name){
this.name = name;
}
Person.prototype.greet = function(otherName){
return "Hi " + otherName + ", my name is " + this.name;
}
注解:
- 访问对象的属性: obj.value。
- 在JS通过'this'来调用 函数调用对象(Person)。
失误
function Person(name){
this.name = name;
}
Person.prototype.greet = function(otherName){
return "Hi " + otherName + ", my name is " + Person.name;
}
- Person并不是全局对象。
国际战场的经典录像
不需。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。