1. <script>
    2. function Person(name,age,gender){
    3. //对象的属性
    4. //对象的方法
    5. this.name = name;
    6. this.age = age;
    7. this.gender = gender;
    8. }
    9. var p = new Person("zhangsan",18,"male");
    10. console.log(p);
    11. //静态信息有什么特点?
    12. //不需要创建对象,可以直接通过函数名调用
    13. //静态信息是属于函数自己的一些信息
    14. Person.country = "中国";
    15. Person.say = function(){
    16. console.log("静态方法");
    17. }
    18. console.log(Person.country);
    19. Person.say();
    20. </script>

    image.png