Skip to content

Instantly share code, notes, and snippets.

@raphaklaus
Last active June 4, 2016 18:30
Show Gist options
  • Save raphaklaus/85c6611c36e557d88cdc83e82f87496d to your computer and use it in GitHub Desktop.
Save raphaklaus/85c6611c36e557d88cdc83e82f87496d to your computer and use it in GitHub Desktop.
function calculaICMS(valor){
return valor * 0.19;
}
function calculaValorFinal(valor, callback){
return valor + calculaICMS(valor);
}
var sacoLaranja = {
total: 25
};
calculaValorFinal(sacoLaranja.total, calculaICMS);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment