* fix: convert js algorithms and data structures * fix: revert some blocks back to blockquote * fix: reverted comparison code block to blockquotes * fix: change js to json Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: convert various section to triple backticks * fix: Make the formatting consistent for comparisons
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| id: 587d7da9367417b2b2512b67
 | |
| title: Add Elements to the End of an Array Using concat Instead of push
 | |
| challengeType: 1
 | |
| ---
 | |
| 
 | |
| ## Description
 | |
| <section id='description'>
 | |
| Functional programming is all about creating and using non-mutating functions.
 | |
| The last challenge introduced the <code>concat</code> method as a way to combine arrays into a new one without mutating the original arrays. Compare <code>concat</code> to the <code>push</code> method. <code>Push</code> adds an item to the end of the same array it is called on, which mutates that array. Here's an example:
 | |
| 
 | |
| ```js
 | |
| var arr = [1, 2, 3];
 | |
| arr.push([4, 5, 6]);
 | |
| // arr is changed to [1, 2, 3, [4, 5, 6]]
 | |
| // Not the functional programming way
 | |
| ```
 | |
| 
 | |
| <code>Concat</code> offers a way to add new items to the end of an array without any mutating side effects.
 | |
| </section>
 | |
| 
 | |
| ## Instructions
 | |
| <section id='instructions'>
 | |
| Change the <code>nonMutatingPush</code> function so it uses <code>concat</code> to add <code>newItem</code> to the end of <code>original</code> instead of <code>push</code>. The function should return an array.
 | |
| </section>
 | |
| 
 | |
| ## Tests
 | |
| <section id='tests'>
 | |
| 
 | |
| ```yml
 | |
| tests:
 | |
|   - text: Your code should use the <code>concat</code> method.
 | |
|     testString: assert(code.match(/\.concat/g), 'Your code should use the <code>concat</code> method.');
 | |
|   - text: Your code should not use the <code>push</code> method.
 | |
|     testString: assert(!code.match(/\.push/g), 'Your code should not use the <code>push</code> method.');
 | |
|   - text: The <code>first</code> array should not change.
 | |
|     testString: assert(JSON.stringify(first) === JSON.stringify([1, 2, 3]), 'The <code>first</code> array should not change.');
 | |
|   - text: The <code>second</code> array should not change.
 | |
|     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> should return <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>.');
 | |
| 
 | |
| ```
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Challenge Seed
 | |
| <section id='challengeSeed'>
 | |
| 
 | |
| <div id='js-seed'>
 | |
| 
 | |
| ```js
 | |
| 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);
 | |
| ```
 | |
| 
 | |
| </div>
 | |
| 
 | |
| 
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Solution
 | |
| <section id='solution'>
 | |
| 
 | |
| ```js
 | |
| function nonMutatingPush(original, newItem) {
 | |
|   return original.concat(newItem);
 | |
| }
 | |
| var first = [1, 2, 3];
 | |
| var second = [4, 5];
 | |
| nonMutatingPush(first, second);
 | |
| ```
 | |
| </section>
 |