The FizzBuzz test is a proposed and incredibly trivial and simple test to see if a developer is actually able
to program. Read
more on Wikipedia
Output
Code
for (let i = 0; i<3000; i++){
let output = "";
if (i%3 === 0) output += "fizz"
if (i%5 === 0) output += "buzz"
if (output === "") output = i
console.log(output)
}