Skip to content

Commit 6ed931f

Browse files
authored
Update task.md
1 parent 8c1d021 commit 6ed931f

File tree

1 file changed

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

1 file changed

+7
-8
lines changed
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
importance: 5
1+
маанилүүлүк: 5
22

33
---
44

5-
# A question about "if"
5+
# "if" жөнүндө суроо
66

7-
Which of these `alert`s are going to execute?
7+
Бул `alert`'тердин кайсынысы аткарылат?
88

9-
What will the results of the expressions be inside `if(...)`?
9+
`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( 'биринчи' );
13+
if (-1 && 0) alert( 'экинчи' );
14+
if (null || -1 && 1) alert( 'үчүнчү' );
1515
```
16-

0 commit comments

Comments
 (0)