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
// Create a for loop that iterates up to 100 while outputting "fizz" at multiples of 3, "buzz" at multiples of 5 and "fizzbuzz" at multiples of 3 and 5
//Parameters -> no inputs
//Return -> console log the output
//Example ->
// 15 --> fizzbuzz
// 10 --> buzz
// 6 --> fizz
// 4 --> 4
//for loop that iterates from 1 to 100
//if statement that checks if the number is divisible by 3 and 5
//if else statement that checks if the number is divisible by 5
//if else statement that checks if the number is divisible by 3