Javascript : The Good Parts를 읽고 시제품에 대한 섹션을 둘러보기 위해 고심했습니다 .
약간의 구글 후, 나는 객체 선언 후 객체에 속성을 추가하는 것이라고 결론을 내렸다 .
w3schools에서 번쩍 이는이 스크립트를 사용하여 prototype 속성을 추가하는 줄을 제거해도 아무런 영향 이 없음을 알았 습니다 . 그래서 요점이 뭐야?
//Prototyping
function employee(name,jobtitle,born)
{
this.name=name;
this.jobtitle=jobtitle;
this.born=born;
}
var fred=new employee("Fred Flintstone","Caveman",1970);
employee.prototype.salary=null; // <--- try removing this line
fred.salary=20000;
document.write (fred.salary);