You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A for loop that prints the numbers 1 through 100. If its divisible by 3 than print 'Fizz' instead of the number. If its divisible by 5 than print 'Buzz' instead. Lastly, if its divisible by both 3 and 5 than print 'FizzBuzz'.