Created
March 18, 2018 17:47
-
-
Save liseferguson/2006559a15c435d66ac495cd6ce825b9 to your computer and use it in GitHub Desktop.
FizzBuzz
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 fizzBuzz(countTo) { | |
| const result = []; | |
| for (let i = 1; i<=countTo; i++) { | |
| if (i % 15 === 0) { | |
| result.push("fizzbuzz"); | |
| } else if (i % 5 === 0) { | |
| result.push("buzz"); | |
| } else if (i % 3 === 0) { | |
| result.push("fizz"); | |
| } else { | |
| result.push(i); | |
| } | |
| } | |
| return result; | |
| } | |
| /* From here down, you are not expected to | |
| understand.... for now :) | |
| Nothing to see here! | |
| */ | |
| // tests | |
| (function testFizzBuzz() { | |
| // we'll use the variables in our test cases | |
| const countTo = 16; | |
| const expected = [ | |
| 1, | |
| 2, | |
| 'fizz', | |
| 4, | |
| 'buzz', | |
| 'fizz', | |
| 7, | |
| 8, | |
| 'fizz', | |
| 'buzz', | |
| 11, | |
| 'fizz', | |
| 13, | |
| 14, | |
| 'fizzbuzz', | |
| 16, | |
| ]; | |
| const actual = fizzBuzz(countTo) || []; | |
| if ( | |
| expected.length === actual.length && | |
| expected.every(function(item, index) { | |
| return actual[index] === item; | |
| }) | |
| ) { | |
| console.log('SUCCESS: fizzBuzz is working'); | |
| } else { | |
| console.log('FAILURE: fizzBuzz is not working'); | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment