Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created March 30, 2018 02:41
Embed
What would you like to do?
export class AppComponent {
title = 'Calculator App';
num1: number;
num2: number;
result: number;
add() {
this.result = this.num1 + this.num2;
}
substract() {
this.result = this.num1 - this.num2;
}
multiply() {
this.result = this.num1 * this.num2;
}
divide() {
this.result = this.num1 % this.num2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment