//생성자 모드에서 전용 속성 및 메서드 추가
function 사람(이름, 나이, 주소) {
this.name = 이름;
this.age = 나이
this.address = 주소;
} //공개 항목 추가 프로토타입 방식 속성, 메소드
Person.prototype = {
constructor: Person,
showName: function () {
alert(this.name this.age this.address)
}
}
//
사용 var person = new Person("zhangsan", 22, "Beijing, China!")
person.showName()