Javascript Fizzbuzz
FIZZBUZZ
Conditions
Print the Number 1-100
If the Number is divisible by 3 print FIZZ
if the Number is divisible by 5 print BUZZ
if the Number is divisible by both 3 and 5 print FIZZBUZZCodes
Javascriptfor(let i =0; i<=100;i++){
if(i%3==0 && i%5!=...
dipeshmurmu.hashnode.dev1 min read