[TypeScript]accessor

class Article{
    accessor title:string = "";
}

上記は下記と同じこと

class Article{
    #title:string = "";
    get title():string{
        return this.#title;
    }
    set title(value:string){
        this.#title = value;
    }
}