prototype : 상속을 구현할수있는 문법 / 유전자 느낌 / JS에만 있는 개념 function Student(이름) { this.name = 이름; this.age = 15; this.sayHi = function () { console.log("안녕하세요" + this.name + "입니다"); }; } let 학생1 = new Student("Park"); let 학생2 = new Student("Lee"); let 학생3 = new Student(); constructor를 만들면 prototype이라는 공간이 자동적으로 생긴다. prototype은 유전자이기때문에 prototype에 값을 추가하면 모든 자식들이 물려받을수 있다. Student.prototype.gender = "남"; 위 ..