Created
December 31, 2015 14:58
-
-
Save edinsoncs/e4d9b3ddb5c9418067d3 to your computer and use it in GitHub Desktop.
Function Porcentaje
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
| /*Calculadora Porcentaje*/ | |
| var t = prompt('ingresa algo'); | |
| function aPorcentaje(num) { | |
| var a = num; | |
| var result = a / 12 * 100 | |
| return result | |
| } | |
| aPorcentaje(t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment