「TypeScript入門」クラス(class)を使うサンプル
構文
class クラス名 {
関数名():xxx{
//some code
}
}
サンプルコード
class Sample { name():void { console.log("Study in arkgame") } } var obj = new Sample(); obj.name();
結果
Study in arkgame
Coding Changes the World
構文
class クラス名 {
関数名():xxx{
//some code
}
}
サンプルコード
class Sample { name():void { console.log("Study in arkgame") } } var obj = new Sample(); obj.name();
結果
Study in arkgame