NicholasLYang/hello_world

Another issue

Opened this issue · 0 comments

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");
    }
  }
}