12 lines
120 B
Markdown
12 lines
120 B
Markdown
The first variant:
|
|
|
|
```js
|
|
if (!(age >= 14 && age <= 90))
|
|
```
|
|
|
|
The second variant:
|
|
|
|
```js
|
|
if (age < 14 || age > 90)
|
|
```
|
|
|