Skip to content

Instantly share code, notes, and snippets.

@vitalymak
Last active June 7, 2017 10:34
Show Gist options
  • Save vitalymak/36c0def10ffd96b47c81409a0d3e5024 to your computer and use it in GitHub Desktop.
Save vitalymak/36c0def10ffd96b47c81409a0d3e5024 to your computer and use it in GitHub Desktop.
Power by module
function powMod(num, pow, mod) {
let res = 1;
for (let i = 0; i < pow; ++i) {
res = res * num % mod;
}
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment