//コンストラクター モードでプライベート プロパティとメソッドを追加します
function person(name, age, address) {
this.name = name;
this.address = address;プロトタイプの方法 プロパティ、メソッド
person.prototype = {
constructor: Person,
showName: function () {
alert(this.name this.age this.address)
}
}
//
var person = new Person("zhangsan", 22, "北京、中国!") を使用します。