Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fariszacina/6287b4213ebf6965d05e to your computer and use it in GitHub Desktop.
Save fariszacina/6287b4213ebf6965d05e to your computer and use it in GitHub Desktop.
var Exemplar = (function () {
function Exemplar() {
}
Exemplar.prototype.render = function () {
console.log('hello world');
};
return Exemplar;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment