There was an error while loading. Please reload this page.
1 parent 2826f1b commit 3779e9bCopy full SHA for 3779e9b
1 file changed
1-js/02-first-steps/12-while-for/2-which-value-while/task.md
@@ -8,14 +8,14 @@ importance: 4
8
9
هر دو حلقه، مقادیر یکسانی را `alert` میکنند یا خیر؟
10
11
-1. حالت پیشوند `++i`:
+1. حالت پیشوند `i++`:
12
13
```js
14
let i = 0;
15
while (++i < 5) alert( i );
16
```
17
18
-2. حالت پسوند `i++`:
+2. حالت پسوند `++i`:
19
20
21
0 commit comments