<script>
function Person(name,age,gender){
//对象的属性
//对象的方法
this.name = name;
this.age = age;
this.gender = gender;
}
var p = new Person("zhangsan",18,"male");
console.log(p);
//静态信息有什么特点?
//不需要创建对象,可以直接通过函数名调用
//静态信息是属于函数自己的一些信息
Person.country = "中国";
Person.say = function(){
console.log("静态方法");
}
console.log(Person.country);
Person.say();
</script>