Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 341 Bytes

File metadata and controls

9 lines (6 loc) · 341 Bytes

The task for this JavaScript assignment was as follows:

Write code that will go through each number from 1 to 100 and:

For each number that is a multiple of 3, print "Fizz" For each number that is a multiple of 5, print "Buzz" For numbers which are a multiple of both 3 and 5, print "FizzBuzz"

All other numbers should just print normally