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

2.0 KiB

id title challengeType videoUrl forumTopicId dashedName
56533eb9ac21ba0edf2244d6 Comparar com o operador menor que 1 https://scrimba.com/c/cNVRWtB 16789 comparison-with-the-less-than-operator

--description--

O operador menor que (<) compara os valores de dois números. Se o número à esquerda for menos que o número à direita, retornará true. Caso contrário, retorna false. Assim como o operador de igualdade, o operador menor que converte os tipos de dados enquanto compara.

Exemplos

2   < 5
'3' < 7
5   < 5
3   < 2
'8' < 4

Em ordem, essas expressões seriam iguais à true, true, false, false e false.

--instructions--

Adicione o operador menor que para indicar as linhas para que a instrução de retorno faça sentido.

--hints--

testLessThan(0) deve retornar a string Under 25

assert(testLessThan(0) === 'Under 25');

testLessThan(24) deve retornar a string Under 25

assert(testLessThan(24) === 'Under 25');

testLessThan(25) deve retornar a string Under 55

assert(testLessThan(25) === 'Under 55');

testLessThan(54) deve retornar a string Under 55

assert(testLessThan(54) === 'Under 55');

testLessThan(55) deve retornar a string 55 or Over

assert(testLessThan(55) === '55 or Over');

testLessThan(99) deve retornar a string 55 or Over

assert(testLessThan(99) === '55 or Over');

Você deve usar o operador < pelo menos duas vezes

assert(code.match(/val\s*<\s*('|")*\d+('|")*/g).length > 1);

--seed--

--seed-contents--

function testLessThan(val) {
  if (val) {  // Change this line
    return "Under 25";
  }

  if (val) {  // Change this line
    return "Under 55";
  }

  return "55 or Over";
}

testLessThan(10);

--solutions--

function testLessThan(val) {
  if (val < 25) {  // Change this line
    return "Under 25";
  }

  if (val < 55) {  // Change this line
    return "Under 55";
  }

  return "55 or Over";
}