en.javascript.info/1-js/02-first-steps/11-logical-ops/7-check-if-out-range/solution.md
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

120 B

The first variant:

if (!(age >= 14 && age <= 90))

The second variant:

if (age < 14 || age > 90)