These questions are designed to help prepare you for the Technical Interview. Try completing these practice problems without using notes or online resources.
Use loops rather than relying on built-in JS functions such as reverse() or filter() for the following questions. In a real interview this restriction may or may not apply, but it’s good practice!
For multiples of 3, print “Fizz” instead of the number.
For multiples of 5, print “Buzz”.
For numbers which are multiples of both 3 and 5, print “FizzBuzz”.