Last active
February 1, 2019 15:19
-
-
Save thivatm/34003a8ad06a38e4909ac136fc762c76 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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