Skip to content

Commit 3cf7769

Browse files
Update dowhile.md
1 parent af688f7 commit 3cf7769

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

loops/dowhile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ while(expression) ;
1212

1313
Lets for example see how to print numbers less than 10 using `do...while` loop:
1414

15-
```
15+
```javascript
1616
var i = 0;
1717
do {
1818
document.write(i + " ");

0 commit comments

Comments
 (0)