freeCodeCamp/curriculum/challenges/portuguese/02-javascript-algorithms-an.../basic-javascript/comparison-with-the-greater...

114 lines
2.2 KiB
Markdown
Raw Normal View History

---
id: 56533eb9ac21ba0edf2244d4
title: Comparar com o operador maior que
challengeType: 1
videoUrl: 'https://scrimba.com/c/cp6GbH4'
forumTopicId: 16786
dashedName: comparison-with-the-greater-than-operator
---
# --description--
2021-07-10 04:23:54 +00:00
O operador maior que (`>`) compara os valores de dois números. Se o número para a esquerda for maior que o número à direita, ele retorna `true`. Caso contrário, ele retorna `false`.
2021-07-10 04:23:54 +00:00
Tal como o operador de igualdade, o operador maior que converterá os tipos de dados de valores enquanto compara.
2021-07-10 04:23:54 +00:00
**Exemplos**
```js
5 > 3
7 > '3'
2 > 3
'1' > 9
```
Em ordem, essas expressões seriam iguais à `true`, `true`, `false`, e `false`.
# --instructions--
2021-07-10 04:23:54 +00:00
Adicione o operador maior que para indicar as linhas indicadas para que as instruções de retorno façam sentido.
# --hints--
2021-07-10 04:23:54 +00:00
`testGreaterThan(0)` deve retornar a string `10 or Under`
```js
assert(testGreaterThan(0) === '10 or Under');
```
2021-07-10 04:23:54 +00:00
`testGreaterThan(10)` deve retornar a string `10 or Under`
```js
assert(testGreaterThan(10) === '10 or Under');
```
2021-07-10 04:23:54 +00:00
`testGreaterThan(11)` deve retornar a string `Over 10`
```js
assert(testGreaterThan(11) === 'Over 10');
```
2021-07-10 04:23:54 +00:00
`testGreaterThan(99)` deve retornar a string `Over 10`
```js
assert(testGreaterThan(99) === 'Over 10');
```
2021-07-10 04:23:54 +00:00
`testGreaterThan(100)` deve retornar a string `Over 10`
```js
assert(testGreaterThan(100) === 'Over 10');
```
2021-07-10 04:23:54 +00:00
`testGreaterThan(101)` deve retornar a string `Over 100`
```js
assert(testGreaterThan(101) === 'Over 100');
```
2021-07-10 04:23:54 +00:00
`testGreaterThan(150)` deve retornar a string `Over 100`
```js
assert(testGreaterThan(150) === 'Over 100');
```
2021-07-10 04:23:54 +00:00
Você deve usar o operador `>` pelo menos duas vezes
```js
assert(code.match(/val\s*>\s*('|")*\d+('|")*/g).length > 1);
```
# --seed--
## --seed-contents--
```js
function testGreaterThan(val) {
if (val) { // Change this line
return "Over 100";
}
if (val) { // Change this line
return "Over 10";
}
return "10 or Under";
}
testGreaterThan(10);
```
# --solutions--
```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";
}
```