We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6327f3c commit 62b7b30Copy full SHA for 62b7b30
1-js/02-first-steps/12-while-for/3-which-value-for/task.md
@@ -2,18 +2,18 @@ importance: 4
2
3
---
4
5
-# Which values get shown by the "for" loop?
+# Korias vertes parodo "for" ciklas?
6
7
-For each loop write down which values it is going to show. Then compare with the answer.
+Kiekvienam ciklui parašykite vertes, kurias jis parodys. Tada palyginkite atsakymus.
8
9
-Both loops `alert` same values or not?
+Abu `alert` ciklai, bet ar tos pačios vertės?
10
11
-1. The postfix form:
+1. Podėlio forma:
12
13
```js
14
for (let i = 0; i < 5; i++) alert( i );
15
```
16
-2. The prefix form:
+2. Priešdėlio forma:
17
18
19
for (let i = 0; i < 5; ++i) alert( i );
0 commit comments