Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active November 23, 2022 01:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mcsee/4749cfe51de1c02848df1aa802fa5705 to your computer and use it in GitHub Desktop.
Save mcsee/4749cfe51de1c02848df1aa802fa5705 to your computer and use it in GitHub Desktop.
function primeFactors(numberToFactor) {
var factors = [],
divisor = 2,
remainder = numberToFactor;
while(remainder>=2) {
if(remainder % divisor === 0) {
factors.push(divisor);
remainder = remainder / divisor;
}
else {
divisor++;
}
}
return factors;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment