Code Academy Walkthrough - FizzBuzz

preview_player
Показать описание


Рекомендации по теме
Комментарии
Автор

Thanks for this. I really struggled with where to put the IF statement for the condition of divisible by 3 and 5. You saved my mouse from destruction.

rholling
Автор

@DrydenPCraig You're welcome, glad I could help.

techtutorialsbykyle
Автор

@rholling You're welcome, glad I could help.

techtutorialsbykyle
Автор

@techtutorialsbykyle thanks for the reply, well i look forward to more of your videos man keep it up.

narutofan
Автор

thanks alot for all your tutorials, i was just curious to know how old are you and how did you learn so much about programming, were you self taught, you had a mentor or you went to school to learn.

narutofan
Автор

@narutofan2120 You're welcome! I won't reveal my exact age but I am a high school student. Most of my knowledge comes from a Java course that I'm taking in school right now; however, I have taught myself HTML, CSS, and Javascript.

techtutorialsbykyle
Автор

Is there a preferred way of doing this? I avoided a second else/if statement in my version, both get the same result. I also noticed you are using == and === in some instances, is there a reason for this? Great video!!!

for (i=1; i <= 20; i++) {
if (i % 3 == 0) {
if (i % 5 == 0) {
console.log('FizzBuzz');
} else {
console.log('Fizz');
}
} else if (i % 5 == 0) {
console.log('Buzz');
} else {
console.log(i);
}
}

Ziljian
Автор

Make answer sheet of lesson CSS:coding with STYLE

TosharAhmed
Автор

please help me learn java script: great videos, i need some help with FizzBuzz++. thanks to videos like this people can learn java. please don't abuse these videos cheaters.

jwsr
Автор

kyle are you on google plus thanks ian, if so add me at ianmccully thanks as appreciate all your help, it is helping me greatly, as i am sure you are helping a lot of other people, as you explain it is plain english for everyone to understand thanks for all your help again.

IanMcCully
Автор

don't give answers it won't help anyone btw letem suffer

damien_strix
Автор

dude wtf is with ur mic it sounds horrible

kashisnep