Hallo, could someone help me pls?
I try to solve the FizzBuzz task.
FizzBuzz
Write a program that uses console.log to print all the numbers from 1 to 100,
with two exceptions. For numbers divisible by 3, print “Fizz” instead of the
number, and for numbers divisible by 5 (and not 3), print “Buzz” instead.
When you have that working, modify your program to print “FizzBuzz” for
numbers that are divisible by both 3 and 5 (and still print “Fizz” or “Buzz”
for numbers divisible by only one of those).
(This is actually an interview question that has been claimed to weed out
a significant percentage of programmer candidates. So if you solved it, your
labor market value just went up.)
I understand the solution but i have some problems witch i underlined with red color at the screenshot.
i % 3 == 0
- why is it “0”? It should be not " 0 " but some kind of term for a “whole number/integer” and not zero “0” in my opinion. (3 divided by 3 is 1 and not 0 “zero” i would say:))
else if(i % 5 == 0 && i % 3 !=0)
- what i dont realy understand is why its two times “=” equal sign and only one time “=” equal sine at the end (!=0).
Can someone pls help me and explain me in easy english?
Thx, and sorry for my not perfect english.