class声明类语法



class User{
    // 属性
    sitr='hdsj';
    constructor(name){
        this.name=name;
    }
    getName(){
        return this.name;
    }
    changeSite(value){
        this.site=value;
    }
    show(){
        return `${this.site}:${this.name}`;
    }
}
let hd=new User("hdr");
console.log(hd.getName());
console.log(User==User.prototype.constructor)

hd.changeSite('ahdf'); console.log(hd.show());
 
 

 

上一篇:C# 泛型知识点记录


下一篇:React 基础 - 11 (子元素绑定 ref)