Skip to content

Instantly share code, notes, and snippets.

@thivatm
Last active February 1, 2019 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thivatm/34003a8ad06a38e4909ac136fc762c76 to your computer and use it in GitHub Desktop.
Save thivatm/34003a8ad06a38e4909ac136fc762c76 to your computer and use it in GitHub Desktop.
calculateCurrencyOne() {
this.toValue = this.fromValue * parseFloat(this.resultRate);
}
calculateCurrencyTwo() {
this.fromValue = this.toValue / parseFloat(this.resultRate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment