Skip to content

Commit 7fa2669

Browse files
authored
Translated task.md
1 parent 4bcffb3 commit 7fa2669

File tree

1 file changed

+6
-6
lines changed
  • 1-js/02-first-steps/11-logical-operators/8-if-question

1 file changed

+6
-6
lines changed

1-js/02-first-steps/11-logical-operators/8-if-question/task.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ importance: 5
22

33
---
44

5-
# A question about "if"
5+
# Klausimas apie "if"
66

7-
Which of these `alert`s are going to execute?
7+
Kurie iš šių `alert`s bus įvykdyti?
88

9-
What will the results of the expressions be inside `if(...)`?
9+
Koks bus išraiškų rezultatas viduje `if(...)`?
1010

1111
```js
12-
if (-1 || 0) alert( 'first' );
13-
if (-1 && 0) alert( 'second' );
14-
if (null || -1 && 1) alert( 'third' );
12+
if (-1 || 0) alert( 'pirmas' );
13+
if (-1 && 0) alert( 'antras' );
14+
if (null || -1 && 1) alert( 'trečias' );
1515
```
1616

0 commit comments

Comments
 (0)