We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f12793 + 27974ec commit 5a304d4Copy full SHA for 5a304d4
1 file changed
1-js/03-code-quality/03-comments/article.md
@@ -58,8 +58,9 @@ function showPrimes(n) {
58
59
function isPrime(n) {
60
for (let i = 2; i < n; i++) {
61
- if ( n % i == 0) return false;
+ if (n % i == 0) return false;
62
}
63
+
64
return true;
65
66
```
0 commit comments