Created
October 3, 2012 19:55
-
-
Save cgack/3829439 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Greeter = (function () { | |
function Greeter(message) { | |
this.greeting = message; | |
} | |
Greeter.prototype.greet = function () { | |
return "Hello, " + this.greeting; | |
}; | |
return Greeter; | |
})(); | |
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