2018-10-04 14:37:37 +01:00
---
id: 56533eb9ac21ba0edf2244d4
title: Comparison with the Greater Than Operator
challengeType: 1
2020-05-21 17:31:25 +02:00
isHidden: false
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cp6GbH4'
2019-07-31 11:32:23 -07:00
forumTopicId: 16786
2018-10-04 14:37:37 +01:00
---
## Description
<section id='description'>
The greater than operator (<code>></code>) compares the values of two numbers. If the number to the left is greater than the number to the right, it returns <code>true</code>. Otherwise, it returns <code>false</code>.
Like the equality operator, greater than operator will convert data types of values while comparing.
<strong>Examples</strong>
2019-05-17 06:20:30 -07:00
```js
5 > 3 // true
7 > '3' // true
2 > 3 // false
'1' > 9 // false
```
2018-10-04 14:37:37 +01:00
</section>
## Instructions
<section id='instructions'>
2019-10-27 15:45:37 -01:00
Add the greater than operator to the indicated lines so that the return statements make sense.
2018-10-04 14:37:37 +01:00
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>testGreaterThan(0)</code> should return "10 or Under"
2019-07-13 00:07:53 -07:00
testString: assert(testGreaterThan(0) === "10 or Under");
2018-10-04 14:37:37 +01:00
- text: <code>testGreaterThan(10)</code> should return "10 or Under"
2019-07-13 00:07:53 -07:00
testString: assert(testGreaterThan(10) === "10 or Under");
2018-10-04 14:37:37 +01:00
- text: <code>testGreaterThan(11)</code> should return "Over 10"
2019-07-13 00:07:53 -07:00
testString: assert(testGreaterThan(11) === "Over 10");
2018-10-04 14:37:37 +01:00
- text: <code>testGreaterThan(99)</code> should return "Over 10"
2019-07-13 00:07:53 -07:00
testString: assert(testGreaterThan(99) === "Over 10");
2018-10-04 14:37:37 +01:00
- text: <code>testGreaterThan(100)</code> should return "Over 10"
2019-07-13 00:07:53 -07:00
testString: assert(testGreaterThan(100) === "Over 10");
2018-10-04 14:37:37 +01:00
- text: <code>testGreaterThan(101)</code> should return "Over 100"
2019-07-13 00:07:53 -07:00
testString: assert(testGreaterThan(101) === "Over 100");
2018-10-04 14:37:37 +01:00
- text: <code>testGreaterThan(150)</code> should return "Over 100"
2019-07-13 00:07:53 -07:00
testString: assert(testGreaterThan(150) === "Over 100");
2018-10-04 14:37:37 +01:00
- text: You should use the <code>></code> operator at least twice
2019-07-13 00:07:53 -07:00
testString: assert(code.match(/val\s*>\s*('|")*\d+('|")*/g).length > 1);
2018-10-04 14:37:37 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function testGreaterThan(val) {
if (val) { // Change this line
return "Over 100";
}
2018-10-08 01:01:53 +01:00
2018-10-04 14:37:37 +01:00
if (val) { // Change this line
return "Over 10";
}
return "10 or Under";
}
testGreaterThan(10);
```
</div>
</section>
## Solution
<section id='solution'>
```js
function testGreaterThan(val) {
if (val > 100) { // Change this line
return "Over 100";
}
if (val > 10) { // Change this line
return "Over 10";
}
return "10 or Under";
}
```
</section>