Skip to content

Instantly share code, notes, and snippets.

@yogeshkoli
Created September 16, 2019 18:28
Show Gist options
  • Save yogeshkoli/1cb1c348b0f82b72ca243eeae5ac87a9 to your computer and use it in GitHub Desktop.
Save yogeshkoli/1cb1c348b0f82b72ca243eeae5ac87a9 to your computer and use it in GitHub Desktop.
iTech Empires Tutorial
var Calculation = /** @class */ (function () {
function Calculation(x, y) {
this.x = x;
this.y = y;
}
Calculation.prototype.add = function () {
console.log(this.x + this.y);
};
return Calculation;
}());
var calc = new Calculation(10, 20);
calc.add();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment