Last active
June 4, 2016 18:30
-
-
Save raphaklaus/85c6611c36e557d88cdc83e82f87496d to your computer and use it in GitHub Desktop.
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
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