We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 704285e commit f27d772Copy full SHA for f27d772
javascript/2427-number-of-common-factors.js
@@ -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