Online FizzBuzz Test

Can you write the famously trivial FizzBuzz program in JavaScript? Here’s a statement of the problem:

Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”.

To simplify things, I’ve given you a print() function that will print whatever you pass into it. Don’t worry about whitespace in your program’s output; my grading script ignores it.

Your code goes here:

I give up. Show me a solution!