freeCodeCamp/curriculum/challenges/russian/02-javascript-algorithms-an.../functional-programming/combine-two-arrays-using-th...

2.7 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d7da9367417b2b2512b66 Combine Two Arrays Using the concat Method 1 Объединить два массива с помощью метода concat

Description

Concatenation означает объединение объектов до конца. JavaScript предлагает метод concat для строк и массивов, которые работают одинаково. Для массивов метод вызывается на один, затем другой массив предоставляется как аргумент concat , который добавляется в конец первого массива. Он возвращает новый массив и не мутирует ни один из исходных массивов. Вот пример:
[1, 2, 3] .concat ([4, 5, 6]);
// Возвращает новый массив [1, 2, 3, 4, 5, 6]

Instructions

Используйте concat метод в nonMutatingConcat функции конкатенации attach к концу original . Функция должна возвращать конкатенированный массив.

Tests

tests:
  - text: Ваш код должен использовать метод <code>concat</code> .
    testString: 'assert(code.match(/\.concat/g), "Your code should use the <code>concat</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>nonMutatingConcat([1, 2, 3], [4, 5])</code> должен возвращать <code>[1, 2, 3, 4, 5]</code> .'
    testString: 'assert(JSON.stringify(nonMutatingConcat([1, 2, 3], [4, 5])) === JSON.stringify([1, 2, 3, 4, 5]), "<code>nonMutatingConcat([1, 2, 3], [4, 5])</code> should return <code>[1, 2, 3, 4, 5]</code>.");'

Challenge Seed

function nonMutatingConcat(original, attach) {
  // Add your code below this line


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

Solution

// solution required