FizzBuzz is a nearly trivial programming exercise, sometimes used in job interviews to weed out candidates who say they can program but really can't. Write a program that prints the numbers from 1 to ...
Let's write FizzBuzz in JS, using what you've learned to this point. To complete this exercise you'll need to: * Define a function. * Return a value from a function. * Use conditionals. * Use the ...