5 Beginner JavaScript Coding Challenges #fullstackroadmap (Ep. 4.4)

preview_player
Показать описание
This is part of my Frontend Web Development Course for Beginners. Learn the basics of HTML, CSS, and JavaScript to build a solid foundation for web development.

You can find resources and other information for this video at the Full Stack Foundations link below:

-------------------------------------------------------------------------------------

Connect with me:

-------------------------------------------------------------------------------------

Timestamps:

0:00 Intro
1:20 Challenges
1:29 Challenge #1 solution
2:24 Challenge #2 solution
3:38 Challenge #3 solution
6:34 Challenge #4 solution
9:15 Challenge #5 solution
Рекомендации по теме
Комментарии
Автор

on challenge 2 the 2nd snippet has === as well

chefhughesie
Автор

Challene 2... both snippet are the same. I am sure you meant to use == in one of them. Therefore i would go for == here because === has to be exactly the same value

Ruxziiiiii
Автор

Hey Zach,
You are doing an amazing work explaining these concepts with ease, it really helps.
I have a small suggestion if at all it is possible for you to consider : please give us at least 3-4 seconds in the beginning for challenge questions, so that we can pause and screenshot it or think over them before going ahead and solve. Just a request 😊

mishu
Автор

Great exercise!
For challenge 3 I did it like this:
const expression = !((100%50)<(100/50)) && (300 + 5 === 305);
Still works.

AlexandruCodrut
Автор

Challenge 1 ... you cannot modify the const variable once set. we have to change it with let.

Ruxziiiiii