I am going through codeacademys JavaScript tutorials as i am new to it. The tutorial asks for the following:
Print out the numbers from 1 - 20. The rules:
Hi please check the ¨=¨
for (i = 1; i <= 20; i++) { if (i%3===0 && i%5===0) { console.log("FizzBuzz"); } else if (i%3===0) { console.log("Fizz"); } else if (i%5===0) { console.log("Buzz"); } else { console.log(i); } }