We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4442b7e commit 959f215Copy full SHA for 959f215
1-js/02-first-steps/12-while-for/2-which-value-while/task.md
@@ -2,19 +2,19 @@ importance: 4
2
3
---
4
5
-# Which values does the while loop show?
+# Kurias vertes parodo while ciklas?
6
7
-For every loop iteration, write down which value it outputs and then compare it with the solution.
+Kiekvienai ciklo iteracijai užrašykite kurią vertę ji atiduoda ir tada palygininkite tą vertę su sprendimu.
8
9
-Both loops `alert` the same values, or not?
+Abu ciklai `alert` tas pačias vertes ar ne?
10
11
-1. The prefix form `++i`:
+1. Priešdėlinė forma `++i`:
12
13
```js
14
let i = 0;
15
while (++i < 5) alert( i );
16
```
17
-2. The postfix form `i++`
+2. Podėlinė forma `i++`
18
19
20
0 commit comments