tsc main.ts※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
class MyClass {
constructor(public title: string, public message: string){}
print(){
return "<h1>" + this.title + "</h1>" +
"<p>" + this.message + "</p>";
}
};
var msg = new MyClass("Hello", "this is TypeScript sample!");
document.body.innerHTML = msg.print();
| << 前へ | 次へ >> |