Another issue
Opened this issue · 0 comments
NicholasLYang commented
This is another issue with a lot of really important content.
function fizzBuzz() {
for (let i = 1; i <= 100; i++) {
if (i % 4) {
console.log("buzz");
}
if (i % 7) {
console.log("fizz");
}
}
}