We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecc1875 commit 4158952Copy full SHA for 4158952
2 files changed
1-js/02-first-steps/11-logical-operators/7-check-if-out-range/solution.md
@@ -1,10 +1,10 @@
1
-The first variant:
+Prima variantă:
2
3
```js
4
if (!(age >= 14 && age <= 90))
5
```
6
7
-The second variant:
+A doua variantă:
8
9
10
if (age < 14 || age > 90)
1-js/02-first-steps/11-logical-operators/7-check-if-out-range/task.md
@@ -2,8 +2,8 @@ importance: 3
---
-# Check the range outside
+# Verifică intervalul din afara.
-Write an `if` condition to check that `age` is NOT between `14` and `90` inclusively.
+Scrie o condiție `if` care verifică dacă `age` nu este cuprins înte `14` și `90`, inclusiv.
-Create two variants: the first one using NOT `!`, the second one -- without it.
+Creează două variante: în prima să folosești NU `!`, iar ceea de-a doua nu.
0 commit comments