We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bcffb3 commit 7fa2669Copy full SHA for 7fa2669
1-js/02-first-steps/11-logical-operators/8-if-question/task.md
@@ -2,15 +2,15 @@ importance: 5
2
3
---
4
5
-# A question about "if"
+# Klausimas apie "if"
6
7
-Which of these `alert`s are going to execute?
+Kurie iš šių `alert`s bus įvykdyti?
8
9
-What will the results of the expressions be inside `if(...)`?
+Koks bus išraiškų rezultatas viduje `if(...)`?
10
11
```js
12
-if (-1 || 0) alert( 'first' );
13
-if (-1 && 0) alert( 'second' );
14
-if (null || -1 && 1) alert( 'third' );
+if (-1 || 0) alert( 'pirmas' );
+if (-1 && 0) alert( 'antras' );
+if (null || -1 && 1) alert( 'trečias' );
15
```
16
0 commit comments