Skip to content

Commit f27d772

Browse files
committed
Create 2427-number-of-common-factors.js
1 parent 704285e commit f27d772

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/**
2+
* @param {number} a
3+
* @param {number} b
4+
* @return {number}
5+
*/
6+
var commonFactors = function (a, b) {
7+
let arr = []; // initialize empty array arr
8+
let min = Math.min(a, b); // store minimum number from a and b into min using Math.min()
9+
10+
// loop thorugh every number from 1 to min
11+
for (let i = 1; i <= min; i++) {
12+
13+
// if a anf b both divisable by i then push i into array arr
14+
if (a % i == 0 && b % i == 0) {
15+
arr.push(i);
16+
}
17+
}
18+
19+
// return length of array arr
20+
return arr.length;
21+
};

0 commit comments

Comments
 (0)