We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f784e commit 42cec88Copy full SHA for 42cec88
1 file changed
Maths/FindLcm.js
@@ -24,7 +24,7 @@ const findLcm = (num1, num2) => {
24
}
25
26
// Check to see whether num1 or num2 is larger.
27
- let maxNum = Math.max(num1, num2)
+ const maxNum = Math.max(num1, num2)
28
let lcm = maxNum
29
30
while (true) {
0 commit comments