Skip to content

Instantly share code, notes, and snippets.

Created July 17, 2017 13:59
TypeScript Ders Notları #3 Class Kullanımı
/* http://ercanbozkurt.blogspot.com */
class Bilgi
{
mesajMetni: string;
constructor(mesaj: string)
{
this.mesajMetni = mesaj;
}
mesajVer()
{
return "Merhaba! Mesajınız: " + this.mesajMetni;
}
}
let bilgi = new Bilgi("Ken'i seçme beni seç!");
let btn = document.createElement('button');
btn.textContent = "Tıkla";
btn.onclick = function ()
{
alert(bilgi.mesajVer());
}
document.body.appendChild(btn);
/* http://ercanbozkurt.blogspot.com */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment