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