Last active
February 20, 2025 19:49
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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