From b76b763f38db92564116222c2a735deea4d0181e Mon Sep 17 00:00:00 2001 From: Kristyn Bryan Date: Thu, 14 Jul 2016 15:08:48 -0400 Subject: [PATCH] Update README.md --- unit_04/w10d02/morning_exercise/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit_04/w10d02/morning_exercise/README.md b/unit_04/w10d02/morning_exercise/README.md index 0279593..df7cd64 100644 --- a/unit_04/w10d02/morning_exercise/README.md +++ b/unit_04/w10d02/morning_exercise/README.md @@ -76,7 +76,7 @@ var multiplyArray = function (ary) { ### Fizz Buzzer ```javascript var fizzbuzzer = function(x){ - if((x%5 === 0) || (x%3 === 0 )) { + if((x%5 === 0) & (x%3 === 0 )) { return 'fizzbuzz' } else if( x%3 == 0 ) { return 'fizz'