2.6 KiB
2.6 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d7da9367417b2b2512b67 | Add Elements to the End of an Array Using concat Instead of push | 1 | 使用concat将元素添加到数组的末尾而不是push |
Description
concat
方法作为一种将数组组合成新数组而不改变原始数组的方法。将concat
与push
方法进行比较。 Push
将一个项添加到调用它的同一个数组的末尾,这会改变该数组。这是一个例子: var arr = [1,2,3];
arr.push([4,5,6]);
// arr更改为[1,2,3,[4,5,6]]
//不是函数式编程方式
Concat
提供了一种在数组末尾添加新项目而无任何变异副作用的方法。 Instructions
nonMutatingPush
函数,使其使用concat
将newItem
添加到original
结尾而不是push
。该函数应返回一个数组。 Tests
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
// solution required