We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26ea426 commit 581e9fbCopy full SHA for 581e9fb
1 file changed
1-js/02-first-steps/10-ifelse/5-rewrite-if-question/task.md
@@ -2,16 +2,16 @@ importance: 5
2
3
---
4
5
-# Rewrite 'if' into '?'
+# Perrašykite 'if' į '?'
6
7
-Rewrite this `if` using the conditional operator `'?'`:
+Perrašykite šį `if` naudodami sąlygos operatorių `'?'`:
8
9
```js
10
let result;
11
12
if (a + b < 4) {
13
- result = 'Below';
+ result = 'Žemiau';
14
} else {
15
- result = 'Over';
+ result = 'Aukščiau';
16
}
17
```
0 commit comments