Skip to content

Instantly share code, notes, and snippets.

@jagjeetgit
Created February 18, 2018 06:50
Show Gist options
  • Save jagjeetgit/1699dc938b884ce390018d4ba272728b to your computer and use it in GitHub Desktop.
Save jagjeetgit/1699dc938b884ce390018d4ba272728b to your computer and use it in GitHub Desktop.
Custom Function Expression Style
var interest;
interest = function(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