实例成员与静态成员

实例(对象) new出来的对象叫实例对象 new过程即实例化对象过程

实例成员指的是new出来的对象中的属性或方法

function Student(age) {
        // 添加属性 this===创建出来的对象
        this.school = '大前端学院'
        this.age = age
        
        this.sayHi = function () {
          console.log('sayHi')
        }
        
        console.log(this)
      }

 静态成员 通过构造函数.属性  = 值  通过构造函数打点去访问的属性和方法叫静态方法

  通过构造函数.属性去访问

Student.nation = 'china'
      console.log(Student.nation)//china

你可能感兴趣的:(javascript,开发语言,ecmascript)