Skip to content

Instantly share code, notes, and snippets.

@lucasdu4rte
Created February 26, 2018 03:15
Show Gist options
  • Save lucasdu4rte/1244585ea5d2f8a19660b231acc25c66 to your computer and use it in GitHub Desktop.
Save lucasdu4rte/1244585ea5d2f8a19660b231acc25c66 to your computer and use it in GitHub Desktop.
Juros Simples
var juros_simples = function(capital, taxa, n_periodos) {
return capital * taxa * n_periodos;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment