//Add private properties and methods in constructor mode
function Person(name, age, address) {
this.name = name;
this.age = age;
this.address = address;
}
//Add public in prototype way Properties, methods
Person.prototype = {
constructor: Person,
showName: function () {
alert(this.name this.age this.address);
}
}
//Use
var person = new Person("zhangsan", 22, "Beijing, China!");
person.showName();
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn