logo CodeStepByStep logo

fizzBuzz

Language/Type: JavaScript loops

Write a function named fizzBuzz that takes an integer as a parameter, then prints all of the numbers from one to that integer, separated by spaces. Use a loop to build your result, but for multiples of three, add "Fizz" to the string instead of the number. For the multiples of five add "Buzz". For numbers which are multiples of both three and five add "FizzBuzz". Use console.log() to print 20 numbers at a time. For example, the call fizzBuzz(100) should output the following to the console:

1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz 16 17 Fizz 19 Buzz
Fizz 22 23 Fizz Buzz 26 Fizz 28 29 FizzBuzz 31 32 Fizz 34 Buzz Fizz 37 38 Fizz Buzz
41 Fizz 43 44 FizzBuzz 46 47 Fizz 49 Buzz Fizz 52 53 Fizz Buzz 56 Fizz 58 59 FizzBuzz
61 62 Fizz 64 Buzz Fizz 67 68 Fizz Buzz 71 Fizz 73 74 FizzBuzz 76 77 Fizz 79 Buzz
Fizz 82 83 Fizz Buzz 86 Fizz 88 89 FizzBuzz 91 92 Fizz 94 Buzz Fizz 97 98 Fizz Buzz 
Function: Write a JavaScript function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.