Skip to content

Instantly share code, notes, and snippets.

@westside
Created October 21, 2015 09:43
Show Gist options
  • Save westside/2e28de7a3998a0287855 to your computer and use it in GitHub Desktop.
Save westside/2e28de7a3998a0287855 to your computer and use it in GitHub Desktop.
var calculator = {
operand1:1,
operand2:2,
compute: function() {
this.result = this.operand1 + this.operand2;
}
};
calculator.compute();
print(calculator.result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment