diff --git a/javascript/src/fizzbuzz.js b/javascript/src/fizzbuzz.js index f277d86..306f40d 100644 --- a/javascript/src/fizzbuzz.js +++ b/javascript/src/fizzbuzz.js @@ -5,6 +5,8 @@ module.exports = function(input) { if(input % 5 === 0) output += 'Buzz' if(input % 99 === 0) output += 'Strange' + if(input % 101 === 0) output += 'Even Stranger' + return output.length > 0 ? output : input -} \ No newline at end of file +}