自定义构造函数
自定义构造函数
创建一个student构造函数
function student(){
}
//一般函数的调用方式
student('张三',19);
//构造函数的调用方式
new student();
一般构造函数与自定义构造函数区别:调用函数方式不同。
构造函数的创建有一个约定:
1.首字母大写
function Student( name,age){
//这里的this指向s1(实例)
this.name = name;
this.age = age;
}
var s1 = new Student('张三',19);