옵션 |
|
안녕하세요.
밑에 prototype.name=null로 지정하는 뜻이 뭔지 궁금합니다
function
Person(name){
this
.name = name;
}
Person.prototype.name=
null
;
Person.prototype.introduce =
function
(){
return
'My name is '
+
this
.name;
}
var
p1 =
new
Person(
'egoing'
);
document.write(p1.introduce()+
"<br />"
);
출처 | https://opentutorials.org/course/743/6572 |