Skip to content

Instantly share code, notes, and snippets.

@JuvenalAmarante
Last active July 18, 2019 14:10
Show Gist options
  • Save JuvenalAmarante/0807802b7517e2a10655464bee77c1e9 to your computer and use it in GitHub Desktop.
Save JuvenalAmarante/0807802b7517e2a10655464bee77c1e9 to your computer and use it in GitHub Desktop.
calculateModule = (numero, divisor) => {
const valor = (numero / divisor).toFixed(2);
const inteiro = Math.trunc(valor);
const decimal = valor - inteiro;
const resto = decimal * divisor;
return resto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment