2018-10-04 14:37:37 +01:00
---
id: 56533eb9ac21ba0edf2244d8
title: Comparisons with the Logical And Operator
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cvbRVtr'
2019-07-31 11:32:23 -07:00
forumTopicId: 16799
2018-10-04 14:37:37 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
Sometimes you will need to test more than one thing at a time. The < dfn > logical and</ dfn > operator (`&&` ) returns `true` if and only if the < dfn > operands</ dfn > to the left and right of it are true.
2018-10-04 14:37:37 +01:00
The same effect could be achieved by nesting an if statement inside another if:
2019-05-17 06:20:30 -07:00
```js
if (num > 5) {
if (num < 10 ) {
return "Yes";
}
}
return "No";
```
2020-11-27 19:02:05 +01:00
will only return "Yes" if `num` is greater than `5` and less than `10` . The same logic can be written as:
2019-05-17 06:20:30 -07:00
```js
if (num > 5 & & num < 10 ) {
return "Yes";
}
return "No";
```
2020-11-27 19:02:05 +01:00
# --instructions--
Replace the two if statements with one statement, using the && operator, which will return `"Yes"` if `val` is less than or equal to `50` and greater than or equal to `25` . Otherwise, will return `"No"` .
# --hints--
You should use the `&&` operator once
```js
assert(code.match(/& & /g).length === 1);
```
You should only have one `if` statement
```js
assert(code.match(/if/g).length === 1);
```
`testLogicalAnd(0)` should return "No"
```js
assert(testLogicalAnd(0) === 'No');
```
`testLogicalAnd(24)` should return "No"
```js
assert(testLogicalAnd(24) === 'No');
```
`testLogicalAnd(25)` should return "Yes"
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(testLogicalAnd(25) === 'Yes');
2018-10-04 14:37:37 +01:00
```
2020-11-27 19:02:05 +01:00
`testLogicalAnd(30)` should return "Yes"
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(testLogicalAnd(30) === 'Yes');
```
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
`testLogicalAnd(50)` should return "Yes"
```js
assert(testLogicalAnd(50) === 'Yes');
```
`testLogicalAnd(51)` should return "No"
```js
assert(testLogicalAnd(51) === 'No');
```
`testLogicalAnd(75)` should return "No"
```js
assert(testLogicalAnd(75) === 'No');
```
`testLogicalAnd(80)` should return "No"
```js
assert(testLogicalAnd(80) === 'No');
```
# --seed--
## --seed-contents--
2018-10-04 14:37:37 +01:00
```js
function testLogicalAnd(val) {
// Only change code below this line
if (val) {
if (val) {
return "Yes";
}
}
// Only change code above this line
return "No";
}
testLogicalAnd(10);
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-10-04 14:37:37 +01:00
```js
function testLogicalAnd(val) {
if (val >= 25 & & val < = 50) {
return "Yes";
}
return "No";
}
```