Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Translate task 4
  • Loading branch information
Moviss committed Oct 27, 2020
commit 039f50eeb63a0dfec4ddbd826787f5d88a51b23d
2 changes: 1 addition & 1 deletion 1-js/02-first-steps/18-while-for/4-for-even/solution.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ for (let i = 2; i <= 10; i++) {
}
```

We use the "modulo" operator `%` to get the remainder and check for the evenness here.
Używamy operatora "modulo" `%` aby uzyskać resztę i sprawdzić tutaj równomierność.
6 changes: 3 additions & 3 deletions 1-js/02-first-steps/18-while-for/4-for-even/task.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
importance: 5
ważność: 5
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do not translate YAML metadata


---

# Output even numbers in the loop
# Zwróć numery parzyste w pętli

Use the `for` loop to output even numbers from `2` to `10`.
Użyj pętli `for` do wyprowadzenia parzystych liczb od `2` do `10`.

[demo]