freeCodeCamp/curriculum/challenges/russian/02-javascript-algorithms-an.../functional-programming/add-elements-to-the-end-of-...

3.3 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d7da9367417b2b2512b67 Add Elements to the End of an Array Using concat Instead of push 1 Добавление элементов в конец массива используя concat вместо push

Описание

Функциональное программирование - это создание и использование не мутирующих функций. Предыдущая проблема ввела метод concat как способ объединить массивы, не изменяя исходные. Сравните concat с методом push . Push добавляет элемент в конец того же самого массива, на котором он вызывается, изменяя этот массив. Вот пример:
var arr = [1, 2, 3];
arr.push ([4, 5, 6]);
// arr изменяется на [1, 2, 3, [4, 5, 6]]
// Не функциональный способ программирования
Concat предлагает способ добавления новых элементов в конец массива без каких-либо мутирующих побочных эффектов.

Указания

Измените функцию nonMutatingPush чтобы она использовала concat для добавления newItem в конец original вместо push . Функция должна возвращать массив.

Тесты

tests:
  - text: Ваш код должен использовать метод <code>concat</code> .
    testString: 'assert(code.match(/\.concat/g), "Your code should use the <code>concat</code> method.");'
  - text: Ваш код не должен использовать метод <code>push</code> .
    testString: 'assert(!code.match(/\.push/g), "Your code should not use the <code>push</code> method.");'
  - text: <code>first</code> массив не должен меняться.
    testString: 'assert(JSON.stringify(first) === JSON.stringify([1, 2, 3]), "The <code>first</code> array should not change.");'
  - text: <code>second</code> массив не должен меняться.
    testString: 'assert(JSON.stringify(second) === JSON.stringify([4, 5]), "The <code>second</code> array should not change.");'
  - text: '<code>nonMutatingPush([1, 2, 3], [4, 5])</code> должен возвращать <code>[1, 2, 3, 4, 5]</code> .'
    testString: 'assert(JSON.stringify(nonMutatingPush([1, 2, 3], [4, 5])) === JSON.stringify([1, 2, 3, 4, 5]), "<code>nonMutatingPush([1, 2, 3], [4, 5])</code> should return <code>[1, 2, 3, 4, 5]</code>.");'

Challenge Seed

function nonMutatingPush(original, newItem) {
  // Add your code below this line
  return original.push(newItem);

  // Add your code above this line
}
var first = [1, 2, 3];
var second = [4, 5];
nonMutatingPush(first, second);

Решение

// solution required