Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active February 20, 2025 19:49
Show Gist options
  • Select an option

  • Save mcsee/4749cfe51de1c02848df1aa802fa5705 to your computer and use it in GitHub Desktop.

Select an option

Save mcsee/4749cfe51de1c02848df1aa802fa5705 to your computer and use it in GitHub Desktop.
This gist belongs to Clean Code Cookbook http://cleancodecookbook.com By Maximiliano Contieri http://maximilianocontieri.com
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