3 Fatal Mistakes Beginner Javascript Developers Make (With Examples) Avoid These At All Costs

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


Follow me on IG:

👔 Follow Me On Linkedin:
Рекомендации по теме
Комментарии
Автор

One of my favorite videos of yours, good stuff 👏
I especially liked watching you clean up and consolidate those button functions. Very helpful. Thanks 👌

juansuarez
Автор

Too many beginners trap themselves in Tutorial Hades. This applies whether learning HTML, CSS, JavaScript, ReactJS, or anything else. Project-based learning after finishing a tutorial is the only way to really validate your grasp of the concepts.

xA
Автор

You are very inspiring, great content! I am enjoying your videos a lot and they helped me get some clarity in my dev journey.

I have one question: How likely is it for me (as a brazilian) to get a remote US/European frontend job?
I have a portfolio page, github with 1000+ commits, linkedIn with 1000+ connections, 1 year of job-experience (+2 years as freelancer), but somehow I'm not getting a lot of attention from US/European recruiters.

cherryfuchs
Автор

The lines with let todoArray = []; and let tododoneArray = []; should (could) use const instead of let.

const todoArray = [];
const tododoneArray = [];

xA