Skip to content

Commit

Permalink
Update no-one-iteration-loop.md ("let", not "int") (#368)
Browse files Browse the repository at this point in the history
Use "let" not "int" to declare the iteration variable
  • Loading branch information
ElRatonDeFuego committed Aug 22, 2022
1 parent 0081ef7 commit ab4bcfe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/rules/no-one-iteration-loop.md
Expand Up @@ -7,12 +7,12 @@ At worst that was not the initial intention of the author and so the body of the
## Noncompliant Code Example

```javascript
for (int i = 0; i < 10; i++) { // noncompliant, loop only executes once
for (let i = 0; i < 10; i++) { // noncompliant, loop only executes once
console.log("i is " + i);
break;
}
...
for (int i = 0; i < 10; i++) { // noncompliant, loop only executes once
for (let i = 0; i < 10; i++) { // noncompliant, loop only executes once
if (i == x) {
break;
} else {
Expand All @@ -25,15 +25,15 @@ for (int i = 0; i < 10; i++) { // noncompliant, loop only executes once
## Compliant Solution

```javascript
for (int i = 0; i < 10; i++) {
for (let i = 0; i < 10; i++) {
console.log("i is " + i);
}
...
for (int i = 0; i < 10; i++) {
for (let i = 0; i < 10; i++) {
if (i == x) {
break;
} else {
console.log("i is " + i);
}
}
```
```

0 comments on commit ab4bcfe

Please sign in to comment.