iRSSの日記

はてなダイアリーiRSSの日記の続き

2020-07-24から1日間の記事一覧

thisの動きに惑う

typescript type Handler = (name: string) => void; class A { public hello(name: string) { console.log("hello " + name, "this:`", this, "`"); } } class B { public world(name: string) { console.log("world " + name, "this:`", this, "`"); } } c…