Merge pull request #38 from aadithpm/patch-1

Edit article.md
This commit is contained in:
Ilya Kantor 2017-06-13 23:20:32 +03:00 committed by GitHub
commit 06f9407604

View file

@ -82,7 +82,7 @@ do {
} while (i < 3);
```
This form of syntax is rarely used. Usually, if there's no special reason, the other form is preferred: `while(…) {…}`.
This form of syntax is rarely used except when you want the body of the loop to execute **at least once** regardless of the condition being truthy. Usually, the other form is preferred: `while(…) {…}`.
## The "for" loop