Skip to content

Commit 3779e9b

Browse files
authored
Update task.md
1 parent 2826f1b commit 3779e9b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • 1-js/02-first-steps/12-while-for/2-which-value-while

1-js/02-first-steps/12-while-for/2-which-value-while/task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ importance: 4
88

99
هر دو حلقه، مقادیر یکسانی را `alert` میکنند یا خیر؟
1010

11-
1. حالت پیشوند `++i`:
11+
1. حالت پیشوند `i++`:
1212

1313
```js
1414
let i = 0;
1515
while (++i < 5) alert( i );
1616
```
1717

18-
2. حالت پسوند `i++`:
18+
2. حالت پسوند `++i`:
1919

2020
```js
2121
let i = 0;

0 commit comments

Comments
 (0)