Hi Guys
I think i have solved the FizzBuzz problem only took me a few hours XD
for(var i =0; i <=100;i++){
if(i % 3==0 && i % 5==0){
console.log('FizzBuzz');
}
else if(i % 5 ==0){
console.log('Buzz');
}
else if(i % 3 ==0){
console.log('Fizz');
}
else{
console.log(i);
}
}
I think that is right . Any feeback would be great
-Eleandro