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/df27505a28b5f65faaa273b0bfe1f322 to your computer and use it in GitHub Desktop.

Select an option

Save mcsee/df27505a28b5f65faaa273b0bfe1f322 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(n) {
var f = [], i = 0, d = 2;
for (i = 0; n >= 2; ) {
if(n % d == 0) {
f[i++]=(d);
n /= d;
}
else {
d++;
}
}
return f;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment