Last active
February 18, 2018 06:46
-
-
Save jagjeetgit/398db829d314367e098ffd25c807779a to your computer and use it in GitHub Desktop.
Custom Function - Function Style
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
/** JS DOC goes here*/ | |
function interest(p,r,t) { | |
return p * r * t /100; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment