Created
October 30, 2020 12:46
-
-
Save zachgoll/9d04337e01ecd2ebdd6055851cab3ccc to your computer and use it in GitHub Desktop.
function api example
This file contains hidden or 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
| function computeMortgagePayment( | |
| interestRate: number, | |
| price: number, | |
| term: number | |
| ): number { | |
| // No need for us to know the implementation details because we have an API! | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment