Created
March 15, 2018 00:46
-
-
Save liseferguson/8a9d81d0d41e7039fa1c59e4b1360698 to your computer and use it in GitHub Desktop.
Array copying 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function minusLastItem(array) { | |
| return array.slice(0, array.length-1); | |
| } | |
| function copyFirstHalf(array) { | |
| return array.slice(0, array.length / 2); | |
| } | |
| /* From here down, you are not expected to | |
| understand.... for now :) | |
| Nothing to see here! | |
| */ | |
| // tests | |
| function testFunctionWorks(fn, input, expected) { | |
| const result = fn(input); | |
| if ( | |
| result && | |
| result.length === expected.length && | |
| result.every(function(item) { | |
| return expected.indexOf(item) > -1; | |
| }) | |
| ) { | |
| console.log('SUCCESS: `' + fn.name + '` works!'); | |
| return true; | |
| } else { | |
| console.error('FAILURE: `' + fn.name + '` is not working'); | |
| return false; | |
| } | |
| } | |
| function runTests() { | |
| const list = [ | |
| 'red bull', | |
| 'monster', | |
| 'amp', | |
| 'rockstar', | |
| 'full throttle', | |
| 'kickstart', | |
| ]; | |
| const result1 = ['red bull', 'monster', 'amp', 'rockstar', 'full throttle']; | |
| const result2 = ['red bull', 'monster', 'amp']; | |
| const list2 = ['lions', 'tigers', 'bears']; | |
| const result3 = ['lions']; | |
| const testResults = [ | |
| testFunctionWorks(minusLastItem, list, result1), | |
| testFunctionWorks(copyFirstHalf, list, result2), | |
| testFunctionWorks(copyFirstHalf, list2, result3) | |
| ]; | |
| const numPassing = testResults.filter(function(result) { | |
| return result; | |
| }).length; | |
| console.log(numPassing + ' out of ' + testResults.length + ' tests passing.'); | |
| } | |
| runTests(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://repl.it/@liseferguson/Array-copying-II-drill