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

3.1 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
56533eb9ac21ba0edf2244d6 Comparison with the Less Than Operator 1 Сравнение с Менеджером оператора

Description

Менее чем оператор ( < ) сравнивает значения двух чисел. Если число слева меньше числа справа, оно возвращает true . В противном случае возвращается false . Как и оператор равенства, меньше, чем оператор, преобразует типы данных при сравнении. Примеры
2 <5 // true
'3' <7 // true
5 <5 // false
3 <2 // false
'8' <4 // false

Instructions

Добавьте less than операторов к указанным линиям так, чтобы операторы return имели смысл.

Tests

tests:
  - text: <code>testLessThan(0)</code> должен вернуть «Менее 25»
    testString: 'assert(testLessThan(0) === "Under 25", "<code>testLessThan(0)</code> should return "Under 25"");'
  - text: '<code>testLessThan(24)</code> должен вернуть «Менее 25 лет»,'
    testString: 'assert(testLessThan(24) === "Under 25", "<code>testLessThan(24)</code> should return "Under 25"");'
  - text: '<code>testLessThan(25)</code> должен вернуть «Менее 55»,'
    testString: 'assert(testLessThan(25) === "Under 55", "<code>testLessThan(25)</code> should return "Under 55"");'
  - text: <code>testLessThan(54)</code> должен вернуть «Менее 55»
    testString: 'assert(testLessThan(54) === "Under 55", "<code>testLessThan(54)</code> should return "Under 55"");'
  - text: '<code>testLessThan(55)</code> должен возвращать «55 или более»,'
    testString: 'assert(testLessThan(55) === "55 or Over", "<code>testLessThan(55)</code> should return "55 or Over"");'
  - text: '<code>testLessThan(99)</code> должен возвращать «55 или более»,'
    testString: 'assert(testLessThan(99) === "55 or Over", "<code>testLessThan(99)</code> should return "55 or Over"");'
  - text: Вы должны использовать оператор <code>&lt;</code> по крайней мере дважды
    testString: 'assert(code.match(/val\s*<\s*("|")*\d+("|")*/g).length > 1, "You should use the <code>&lt;</code> operator at least twice");'

Challenge Seed

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

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

  return "55 or Over";
}

// Change this value to test
testLessThan(10);

Solution

// solution required