Skip to content

Instantly share code, notes, and snippets.

Created July 17, 2017 14:02
TypeScript Ders Notları #3 Class Kullanımı
/* http://ercanbozkurt.blogspot.com */
var Bilgi = (function () {
function Bilgi(mesaj) {
this.mesajMetni = mesaj;
}
Bilgi.prototype.mesajVer = function () {
return "Merhaba! Mesajınız: " + this.mesajMetni;
};
return Bilgi;
}());
var bilgi = new Bilgi("Ken'i seçme beni seç!");
var 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