Skip to content

Instantly share code, notes, and snippets.

@edinsoncs
Created December 31, 2015 14:58
Show Gist options
  • Select an option

  • Save edinsoncs/e4d9b3ddb5c9418067d3 to your computer and use it in GitHub Desktop.

Select an option

Save edinsoncs/e4d9b3ddb5c9418067d3 to your computer and use it in GitHub Desktop.
Function Porcentaje
/*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