Dear senior front-end developers,
You've been in the industry for a while, and you've gained a lot of experience and knowledge along the way. What advice would you give to junior developers who are just starting out? How can they improve their skills and become better developers? What are some common mistakes you see junior developers make, and how can they avoid them?
Share your thoughts and insights to help the next generation of front-end developers succeed.
Follow the DEVteam for more awesome discussions and online camaraderie!
Top comments (44)
I’m not senior, I’m mid level but my biggest advice would be to learn at your own pace in your own time and don’t be discouraged by how long it can take to learn.
I fell into the trap as a junior of working on a team of more experienced developers than I, who knew more than me and I wanted to be as good as them and learn multiple languages and frameworks and I eventually burnt myself out as I took on too much at once.
Find the one thing you love and want to learn first and really focus on being your best in that, once you have a good understanding and you’re ready to learn another language then move onto that. I always have a list of things I want to learn and it’s all very exciting to start with but giving your focus to learning one language/framework at a time gives you the ability to really be the best you can be on that one thing. Quality over quantity.
I also learnt in Vue.js before I learnt real vanilla JavaScript so in my spare time I do vanilla html, css and JavaScript courses for fun mostly, even though I go over things I already know, you’ll be surprised how much you forget or new things you’ll pick up.
W3Schools, FreeCodeCamp and Wes Bos does some great courses.
Don’t be afraid to google things or ask for help when you need. As we’ve all started from the beginning.
Lastly If you can, find yourself a mentor. Mine is my current Team Lead and the support I’ve received has only given me the confidence and helped me grow to where I am now.
Learning to code is hard work but it’s also exciting and fun. Finding your passion and pride in your work is the best feeling and it makes all the hard times worth it.
I'm work through the free code camp resources now after just completing a bootcamp it's nice to be able to revisit these things in more detail - no pressure just enjoying the coding experience. Thanks for the advice : )
As a new coder I would also say that code pen is a great playground for front end and working out smaller projects/elements.
That’s amazing Sally 😄 I found that after doing an intensive course too, it was really nice to do a FreeCodeCamp course just at my own pace.
You’re right! I forgot about that 😅
Good luck with your coding journey, keep doing what you’re doing and you’ll get there in no time!
1) Consult MDN before Google and StackOverflow. It is the authoritative source of information on web technologies.
2) Find and follow authorities in the domain such as:
3) Start home projects and investigations - keep learning.
I'd add some people to that list:
They have either awesome blogs or videos that you can learn a lot from!
I'd also recommend to follow and learn from Kelsey Hightower, for example this video. It's not particular about front end, but you can learn many valuable lessons from him :)
If you are going to include React evangelists (not that I disagree) we need to be even handed.
You might also want to check out Traversy Media and Scrimba.
Not that people shouldn’t use AI, but it’s going to get even harder to get some devs to consult the sources of wisdom and knowledge over time.
Thanks! I add to that list : Todd Motto
Development is ultimately about people, the ones maintaining your code with you, the ones testing and the ones using it. Be mindful of them.
Unless you are working alone, make good use of your team and let the team make good use of you.
Saying this based on my 9+ years of work, both on frontend and backend, may not be agreed by everyone :)
Happy coding!!
Probably already mentioned but I'll focus on the job world.
I'd say to keep positive about failing a job interview or not being selected for a job simply. It's not your technical skills that are bad most of the time, it's just that they look for specific profile for a job. Even if it feels negative, just take it as a good learning opportunity.
I would just like to thank you all willing to share quality knowledge and save myself time naming everybody
I'm not a senior, but mid-level, and here's my advice. Do not underestimate HTML and CSS. JS frameworks will come and go, but mastering the basics will get you even further, no matter how redundant it sounds. After all, there is no web-page without HTML/CSS.
If i listened to the two last tips my motivation to learn will go down to zero.
As a Junior cs student I have very limited time to learn and the main focus right now is on getting a job.
Maybe its true that all you need is js but if what they are looking for is react dev than its a waste of time.
I think i slowly beginning to understand that its not about what is best for the job but about what people use.
Do you think it's right to use vanilla JS inside reactJS project sometimes while triggering events? I really need an advice about it because recently I did that with my chat app project... I haven't been able to figure out how to do with just ReactJS hooks and features that it provides, so I used a little vanilla JS code to handle what I really wanted to do and it worked. What do you think about that?
Thanks.
Typically you'd want to use React's facilities as much as possible instead of directly manipulating the DOM with vanilla js. However, for some edge cases, its absolutely fine to do so.
Just make sure its an exception rather than rule.
If there is a React feature to do what you're trying to do, and it's already a React project, then most likely the best way to go is to use the React way of doing it. It's important to use the best practices of the framework you're using.
Don't listen to too much advise and never follow it blindly. Be your own authority.