Skip to content

Instantly share code, notes, and snippets.

@jagjeetgit
Created February 18, 2018 06:55
Show Gist options
  • Save jagjeetgit/aa23a217ec7de0e5669e612503d4abc8 to your computer and use it in GitHub Desktop.
Save jagjeetgit/aa23a217ec7de0e5669e612503d4abc8 to your computer and use it in GitHub Desktop.
Custom Function as an Object
var c = {
    b : {
        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