Skip to content

Instantly share code, notes, and snippets.

@cgack
Created October 3, 2012 19:51
Show Gist options
  • Save cgack/3829412 to your computer and use it in GitHub Desktop.
Save cgack/3829412 to your computer and use it in GitHub Desktop.
class Greeter {
greeting: string;
constructor (message: string) {
this.greeting = message;
}
greet() {
return "Hello, " + this.greeting;
}
}
var greeter = new Greeter("world");
var button = document.createElement('button')
button.innerText = "Say Hello"
button.onclick = function() {
alert(greeter.greet())
}
document.body.appendChild(button)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment