Skip to content

Commit f295ca5

Browse files
authored
Update task.md
1 parent 09ee21f commit f295ca5

File tree

1 file changed

+5
-5
lines changed
  • 1-js/02-first-steps/10-ifelse/5-rewrite-if-question

1 file changed

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

33
---
44

5-
# Rewrite 'if' into '?'
5+
# 'if' дегенди '?' дегенге кайрадан жазыңыз
66

7-
Rewrite this `if` using the conditional operator `'?'`:
7+
`'?'` шарттуу операторун колдонуп `if` түзүлүшүн кайрадан жазыңыз:
88

99
```js
1010
let result;
1111

1212
if (a + b < 4) {
13-
result = 'Below';
13+
result = 'Аз';
1414
} else {
15-
result = 'Over';
15+
result = 'Көп';
1616
}
1717
```

0 commit comments

Comments
 (0)