2018-10-04 14:37:37 +01:00
---
id: 56533eb9ac21ba0edf2244d7
title: Comparison with the Less Than Or Equal To Operator
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cNVR7Am'
2019-07-31 11:32:23 -07:00
forumTopicId: 16788
2018-10-04 14:37:37 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
The less than or equal to operator (`<=` ) compares the values of two numbers. If the number to the left is less than or equal to the number to the right, it returns `true` . If the number on the left is greater than the number on the right, it returns `false` . Like the equality operator, `less than or equal to` converts data types.
**Examples**
2019-05-17 06:20:30 -07:00
```js
4 < = 5 // true
'7' < = 7 // true
5 < = 5 // true
3 < = 2 // false
'8' < = 4 // false
```
2020-11-27 19:02:05 +01:00
# --instructions--
2018-10-04 14:37:37 +01:00
2019-10-27 15:45:37 -01:00
Add the less than or equal to operator to the indicated lines so that the return statements make sense.
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
`testLessOrEqual(0)` should return "Smaller Than or Equal to 12"
```js
assert(testLessOrEqual(0) === 'Smaller Than or Equal to 12');
```
`testLessOrEqual(11)` should return "Smaller Than or Equal to 12"
```js
assert(testLessOrEqual(11) === 'Smaller Than or Equal to 12');
```
`testLessOrEqual(12)` should return "Smaller Than or Equal to 12"
```js
assert(testLessOrEqual(12) === 'Smaller Than or Equal to 12');
```
`testLessOrEqual(23)` should return "Smaller Than or Equal to 24"
```js
assert(testLessOrEqual(23) === 'Smaller Than or Equal to 24');
2018-10-04 14:37:37 +01:00
```
2020-11-27 19:02:05 +01:00
`testLessOrEqual(24)` should return "Smaller Than or Equal to 24"
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(testLessOrEqual(24) === 'Smaller Than or Equal to 24');
```
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
`testLessOrEqual(25)` should return "More Than 24"
```js
assert(testLessOrEqual(25) === 'More Than 24');
```
`testLessOrEqual(55)` should return "More Than 24"
```js
assert(testLessOrEqual(55) === 'More Than 24');
```
You should use the `<=` operator at least twice
```js
assert(code.match(/val\s*< =\s*('|")*\d+('|")*/g).length > 1);
```
# --seed--
## --seed-contents--
2018-10-04 14:37:37 +01:00
```js
function testLessOrEqual(val) {
if (val) { // Change this line
return "Smaller Than or Equal to 12";
}
2018-10-08 01:01:53 +01:00
2018-10-04 14:37:37 +01:00
if (val) { // Change this line
return "Smaller Than or Equal to 24";
}
return "More Than 24";
}
testLessOrEqual(10);
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-10-04 14:37:37 +01:00
```js
function testLessOrEqual(val) {
if (val < = 12) { // Change this line
return "Smaller Than or Equal to 12";
}
2018-10-08 01:01:53 +01:00
2018-10-04 14:37:37 +01:00
if (val < = 24) { // Change this line
return "Smaller Than or Equal to 24";
}
return "More Than 24";
}
```