JSFiddle - React, Tailwind, and code Playground
JavaScript
/*
What would you do better on this fizz buzz?
*/
function fizzbuzz() {
for(var i=1; i<=100; i++) {
var output = ""
if (i % 15 == 0) {
output = "FizzBuzz"
}else if (i % 5 == 0) {
output = "Buzz"
}else if (i % 3 == 0) {
output = "Fizz"
}
console.log(output || i)
}
}
eval("fizzbuzz()")
/*
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”.
*/