We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c1d021 commit 6ed931fCopy full SHA for 6ed931f
1-js/02-first-steps/11-logical-operators/8-if-question/task.md
@@ -1,16 +1,15 @@
1
-importance: 5
+маанилүүлүк: 5
2
3
---
4
5
-# A question about "if"
+# "if" жөнүндө суроо
6
7
-Which of these `alert`s are going to execute?
+Бул `alert`'тердин кайсынысы аткарылат?
8
9
-What will the results of the expressions be inside `if(...)`?
+`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( 'биринчи' );
+if (-1 && 0) alert( 'экинчи' );
+if (null || -1 && 1) alert( 'үчүнчү' );
15
```
16
-
0 commit comments