Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for 37 Tips from a Senior Frontend Developer
Ndeye Fatou Diop
Ndeye Fatou Diop

Posted on • Edited on • Originally published atfrontendjoy.com

     

37 Tips from a Senior Frontend Developer

I really liked@abbeyperinipost and decided to share my tips after5+ years as a software dev.

Ready? Let's dive in 💪.

📚 Download my FREE 101 React Tips And Tricks Book for a head start.

1. Master the fundamentals

A house 🏠 built on shaky grounds will fall apart at the smallest issue.

Similarly, if you don't have strong basics:

  • You will struggle with JavaScript frameworks
  • You will get stuck at the first unfamiliar problem
  • You won't grasp the common themes between some problems

So, if you want to improve as a frontend developer, masterHTML,CSS, andJavaScript first.


2. Understand how the web works

Frontend development has become more complex in the past few years.

Numerous tools are used (bundlers,transpilers, etc.)

If you don't understand how the web works (i.e., the "only" languages supported areHTML (for structure),CSS (for styling), andJavaScript (for interactivity)), you'll struggle to understand why there's a need for so many tools to run your code online.

Building blocks


3. Get familiar with Data Structures & Algorithms

Data Structures & Algorithms often get a bad rap due to coding interviews 🤦‍♀️.

Yet, it's crucial to understand the key ones and their complexities. Without this knowledge, you won't be able to code complex programs or evaluate your code efficiency.

Below is a non-exhaustive list of Data Structures/Algorithms to know :

Data Structures:Stack,Queue,Hashmap,Set,Graph, etc.

Algorithms:Dynamic programming,Greedy algorithm,Recursion, etc.


4. Learn by doing rather than reading/watching

Tutorials trick you into feeling like you're making progress.

They make you believe you're learning and improving, but you're not moving forward. Real learning happens through practice or teaching.

So, practice a lot and avoid getting stuck in tutorial hell 🔥.


5. Ask for help when stuck

You're not alone.

Chances are, you have senior developers nearby whom you can ask for help.

So, don't waste time going down rabbit holes. Your goal is to provide value, and you're not achieving that if you're wasting time tackling issues others have already addressed.

Ask for help


👉 Learn how to become a Senior Frontend Engineer without a CS Degree or natural talent ✨


6. Ask for help the proper way

Before asking for help, make sure you have done the bare minimum.

You should first:

  • Search on Google/Stack Overflow/ChatGPT for solutions
  • Understand your goal and what's not working
  • Keep a record of all your failed attempts

Also, don't repeatedly ask for help for the same issue. When you get help, note it somewhere so you don't forget it 😉.


7. Don't copy/paste code you don't understand

This is seriously bad for various reasons:

  • You might end up with insecure code that exposes sensitive information like tokens.
  • You won't be able to debug the code easily.
  • You won't be able to explain it to your colleagues.

This is particularly concerning with ChatGPT, as it sometimes provides only 80% accurate answers.

Confused emoji


8. Don't blindly apply every piece of advice found online

I made this mistake when I just started.

I came across advice saying memoization in React was evil, so I stopped using it.

To my embarrassment, my code crashed in pre-production 😅.

So, don't be "old" me.

When you see advice online, ask yourself the following questions first:

  • Does this advice apply to me?
  • Is the person advising in a similar context to mine?

TLDR: Exercise common sense 🫠.


9. Assume good intent: people want you to succeed ❤️

When you're new, it's common to think people are waiting to catch your mistakes and fire you.

At least, that was what my mind was whispering to me.

But it's the opposite.

When a company hires you, it wants you to succeed badly. Otherwise, it's a waste of the time and resources they invested in training and onboarding you.

So, trust that your company wants you to do well, and don't hesitate to lean on your colleagues for support.


10. Done is better than perfect

The pursuit of perfection often results in the following:

  • procrastination
  • waste of time
  • overcomplexity
  • etc.

So, aim to ship/validate a V0 before pushing for more.

Done is better than perfect


11. Always break tasks into manageable ones

Easiest way to feel overwhelmed?

👉 Trying to bite more than you can chew.

Always break projects into smaller tasks.

This will:

  • Keep you from feeling overwhelmed
  • Make your PRs (pull requests) easier to review
  • Provide a sense of progress

12. Be trusted to reach out when you need help

When starting out, your top priority is earning your manager's trust.

They should have peace of mind when thinking about you.

They should believe that:

  • You're reliable with simple tasks
  • You'll seek help when necessary
  • You'll communicate any problems

You don't want to add to your manager's workload by becoming a problem they must constantly monitor 🔎.


13. Show enthusiasm for the work

You can make up for a lot of shortcomings with enthusiasm 🤪.

When you're new, be eager and excited.

Only experienced devs can afford to lack enthusiasm.

No one wants to constantly push someone to work. Mentoring is tough enough already; having to motivate someone makes it more challenging.

Enthuasiasm


14. Stay open to learning new things/tools/methods

Frontend development is constantly evolving.

So, you need to be open to jumping to new technologies.

Don't cling too tightly to your current tools. Instead, show an appetite for learning 😋.


15. Master your dev tools 🛠️

Want to speed up your development time?

Master your dev tools:

  • Your IDE (e.g., VSCode)
  • Your source control system (e.g., Github)
  • Your browser and the inspector (e.g., Chrome inspector)
  • Etc.

Toolkit


16. Focus on delivering value

Don't write code in a vacuum.

Every code you write should provide value to:

  • Your customers
  • Your company
  • Your stakeholders
  • Etc.

Your compensation is tied to the value you provide, not the code you write.

So, prioritize writing effective code that serves a purpose 🥅.


17. Advocate for your work: it won't speak for itself

Probably one of the most common mistakes for new devs (especially if you come from a culture valuing modesty).

  1. You've done something remarkable.

  2. No one knows about it.

👉 That work won't matter.

So, share your work through writing, demos, etc.

Speak for your work


18. Prefer writing dumb code over clever code

Code is read much more often than it is written 📝.

So, refrain from writing clever code that only you can understand.

Readability > Performance > Cleverness.

You want your colleagues to work with your code efficiently, assist you if necessary, etc.


19. Your manager is your best ally

Unless you're exceptionally unlucky, your manager is there to support your growth 📈.

They typically want you to thrive, contribute to the team, and remain with the company instead of seeking opportunities elsewhere.

So, make sure to enlist them to reach your goals.

Share your wins, setbacks (in a positive light), and frustrations instead of struggling alone.


20. Make your manager's life easier

This one's easy but often overlooked.

Your manager likely has issues you can assist with:

  • They might need to add documentation but lack time
  • Their workload could be overwhelming, and they need support
  • And more

This is probably the simplest way to earn your manager's support (for promotions, raises, etc.). They're already aware of the tasks and can directly see their impact (at least for them).

Best boss cup


21. Understand the big picture behind your tasks

Don't be a code monkey 🐒.

It might serve you well when starting.

But to reach the next level, you need to understand the context behind your tasks:

  • Why they are valuable
  • Why you were assigned to them
  • How they fit in the company's overall strategy

This understanding is essential for advancing to the next level of your career.


22. Contribute to the team (documentation, tech talk, demos, etc.)

This benefits not just the company but also you.

By conducting demos, sharing documentation, etc., you showcase your skills and enhance the team's productivity.

Always aim to uplift your team's performance as much as possible: it's enjoyable and rewarding 😊.

Contribute


23. Become the "go-to-person" in a specific area

If I had to offer just one tip, it would be this.

At the beginning of your career, exploring various areas is okay.

However, to advance to mid/senior levels, focus on building expertise in one area. This is more compelling for promotions than being average in multiple areas.

So aim forT-shaped skills: broad knowledge with deep expertise in one area.


24. Develop your communication skills

Unfortunately, this is a must 😀.

Communication is vital for developers. We often have to do the following:

  • RFCs (Request for Comments)
  • Demos
  • Presentations
  • Etc.

So, make sure you have a basic level of proficiency in communication.


25. Take breaks when you're stuck on a problem

It's tough to pause when you're deep into a problem.

Even after 5+ years, I struggle with it 🥹.

Yet, I consistently generate fresher ideas after taking a break.

So, step away if you've been stuck for too long.

Take break


26. Work from your strengths, not your weaknesses

Stop wasting time trying to fix apparent weaknesses.

If it takes you consistently >1 hour to do a task that others at your level accomplish in <5 minutes, steer clear of that task.

Likely, investing more energy won't make you exceptional at it.

Instead, do the essentials and concentrate on maximizing your strengths. If something comes naturally to you and is valuable, do it more 🚀.


27. Take ownership of your career path

No one will plan your career for you.

And without a plan, you'll be working for someone else's plans.

So make sure you create a plan for what you want to achieve in 1/2/5 years 💪.


28. Hang with other devs

Are you currently experiencing impostor syndrome?

If so, spend time with other developers.

You'll quickly realize you're not alone.

Connecting with other devs has additional benefits:

  • You can pick up new tricks/tips
  • You can discuss shared experiences
  • You can complement each other's work
  • Etc.

Friends


29. Mentor younger devs

This is one of the top cures for impostor syndrome.

Once you begin mentoring younger devs:

  • You'll realize you know things
  • You'll establish yourself as a mid/senior dev
  • Etc.

30. Diversify the problems you solve

If you're constantly tackling the same issues, your progress will plateau.

Ensure you're solving diverse problems so you can:

  • Compare various approaches
  • Develop a toolkit for problem-solving
  • Etc.

Eggs in multiple baskets


31. Find mentors

Having great mentors has been the highlight of my career 🥰.

  • Mentors keep you grounded as they understand your journey.
  • They guide you to avoid the mistakes they've made.
  • Etc.

How to find a mentor?

Connect with a more experienced developer you interact with, ask questions, discuss their experiences, etc.

If you don't have access to a senior dev, engage with individuals on platforms like X, build a relationship with them, and then reach out 😉.


32. Commit to a JavaScript framework & master it

The best framework is the one that helps you achieve your goals the fastest.

So, ignore pointless debates online.

Choose the framework you're most comfortable with or need to learn.

And master it. That's sufficient.

With solid JavaScript fundamentals, transitioning to another framework will be quick.

Contract


33. Constantly think of the user experience

As a frontend developer, you should think about the user.

Even if you have PMs or designers, ensure the user experience is nice 😌.

  • Use loading states when needed
  • Communicate progress in the UI
  • Give feedback to the user
  • Etc.

34. Be comfortable saying no

This is a tough one for me.

I get excited about every project and struggle to decline.

But as a developer, you'll often have more requests than you can manage.

So, prioritize the ones that align best with your goals 🥅.


35. Continuously invest in your skills

By choosing to become a frontend developer, you committed to a career in which you must continuously learn.

Therefore, keep investing in your skills by acquiring new languages, mastering new techniques, etc.

Skills


36. When faced with too much work, reduce the features vs. the quality of the code.

The more features your app has, the better, right? Right?

Initially, this might seem true, but additional features lead to more code. And more code means more issues (maintenance, bugs, etc.).

So, when pressed with time, trim features over sacrificing code quality.


37. Strive to understand your collaborators (designers, Backend developers, etc.)

Always show respect to your collaborators (backend devs, designers, PMs, etc.).

App development is a team effort.

The more synergy among team members, the happier and more effective the environment will be 🥰.

Make friends


Thank you for reading this post 🙏.

Leave a comment 📩 to share a tip.

And don't forget to drop a "💖🦄🔥".

If you're learning React, download my101 React Tips & Tricks book forFREE.

If you like articles like this, join myFREE newsletter,FrontendJoy.

If you want daily tips, find me onX/Twitter.

Top comments(250)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss
CollapseExpand
 
bbylumi profile image
OLUWAPELUMI
Join me on this adventure, where every semicolon feels like a victory

thank you very much for this

CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

Glad you like them!

CollapseExpand
 
bbylumi profile image
OLUWAPELUMI
Join me on this adventure, where every semicolon feels like a victory

you're welcome

i'm actually a young dev so i've been wondering how'll i get to know all of this

Thread Thread
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

It definitely comes from experience (sometimes painful one 😅)

CollapseExpand
 
archwin010 profile image
Godwin Archibong
A young lad keen about self-improvement
  • Joined

Thanks a lot for this piece, it's so timely! I am just starting out. Delving into JS, I am comfortable with HTML and CSS. JS ain't easy, but my goal is to learn and master it before adding frameworks. The truth is that, the learning journey is a never-ending process. I sure will take these tips to heart.

CollapseExpand
 
softwaredeveloping profile image
FrontEndWebDeveloping
I'm a sinner saved by grace. My only boast is Jesus Christ. He is "my light, my strength, my song," and I long to follow Him.
  • Location
    San Antonio, TX
  • Pronouns
    he/him
  • Work
    Freelance begginner
  • Joined

Hi Godwin. I'm a fairly new dev too. I found learning JS challenging, but my big breakthrough was when I read a book called "You don't know JS yet." It's an involved read, but, if your like me, after studying the first three chapters, you should be able to write basic JS. You can download a free pdf of the book online. I hope this helps!

CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

OMG, I read the same book@softwaredeveloping. It was an amazing breakthrough to me.
The book was even hard to read at first and I had to re-read it 😅.
That book is all you need to know!

Thread Thread
 
softwaredeveloping profile image
FrontEndWebDeveloping
I'm a sinner saved by grace. My only boast is Jesus Christ. He is "my light, my strength, my song," and I long to follow Him.
  • Location
    San Antonio, TX
  • Pronouns
    he/him
  • Work
    Freelance begginner
  • Joined

Indeed. It's a great book.

CollapseExpand
 
archwin010 profile image
Godwin Archibong
A young lad keen about self-improvement
  • Joined

Thanks, I will

Thread Thread
 
softwaredeveloping profile image
FrontEndWebDeveloping
I'm a sinner saved by grace. My only boast is Jesus Christ. He is "my light, my strength, my song," and I long to follow Him.
  • Location
    San Antonio, TX
  • Pronouns
    he/him
  • Work
    Freelance begginner
  • Joined

I hope it helps!

CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

Super glad you like them and best of luck in your journey 🙏

CollapseExpand
 
ashleyd480 profile image
Ashley D
10+ year client support roles, and currently in technical apprentice program (Bootcamp started Feb 2024)
  • Joined
• Edited on• Edited

This! 🙌
Wonderful article. Not only did I learn some wonderful tips, I also found I related to many of your experiences@_ndeyefatoudiop. ❤️

  • (#34) - Be comfortable saying no: That was definitely something I've struggled for for years as a people pleaser. However, after going through a particular bad round of burnout and health issues as a year ago from overloading myself, I have learned to embrace starting to say no.
  • And great callout for #25- taking breaks is important but we twin- it can be hard to step away but it always ends up being worth it because you are right- when you come back refreshed- you think better. 😊
  • (#27)- And so true about taking ownership of career path... I never thought I could rewrite my career. I was pigeonholed in customer-facing work for a decade, but I finally got the chance to do a bootcamp apprenticeship which I just started this year to transition to tech.
  • I love (#7) as well about not copying code you don't understand. It can be tempting, but I agree and especially for beginners like myself- I think the best way to learn is trying to code it first before looking it up, or if I do use chatGPT- I use it to talk through my code instead of having just give me the answer at once.
  • And yasss for (#36)- focus on quality vs just adding on a bunch of features. That is excellent advice- especially as we have a capstone project coming up here for bootcamp. That is a great reminder and helps me in how I approach it. 💖
CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

I am super glad you like all these points,@ashleyd4880 😀.
It means a lot to know that this is a shared experience!

CollapseExpand
 
monicafidalgo profile image
The Coding Mermaid 🧜‍♀️
I’m Mónica, a FE Developer with a biology degree. We are always on time to reinvent ourselves✨ My goal is to inspire you and help follow your dreams☕ Support me: https://ko-fi.com/monicafidalgo
  • Location
    Portugal
  • Work
    Frontend Product Engineer
  • Joined

"Take ownership of your career path" so true!

CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

This one took me a long time to realise. I used to be just there and saying « yes » to tasks.
But no one can have more your interests in mind than you 😅

CollapseExpand
 
michaeltharrington profile image
Michael Tharrington
I'm a friendly, non-dev, cisgender guy from NC who enjoys playing music/making noise, hiking, eating veggies, and hanging out with my best friend/wife + our 3 kitties + 1 greyhound.
  • Email
  • Location
    North Carolina
  • Education
    BFA in Creative Writing
  • Pronouns
    he/him
  • Work
    Senior Community Manager at DEV
  • Joined

What an awesome freaking list of advice. This is great!

CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

Thanks a lot 🙏

CollapseExpand
 
janaiscoding profile image
Jana
Results-driven Frontend Developer. Passionate about creating smooth and engaging web experiences for the users.
  • Location
    Germany
  • Joined

This was such a great read, as a junior Frontend Developer with only 3 months of professional experience, I can not relate more to so many of your points. Thank you for sharing these tips and being such an inspiration for us!

Truthfully, I aim to be a reliable senior such as yourself one day, that can guide and help others on their journey. I should stop waiting for "29. Mentor younger devs" until I feel "ready" or "good enough". Your post is eye-opening.

CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

Super glad you like it. Yes there are always people you can help even after 3 months.

CollapseExpand
 
htho profile image
Hauke T.
Usabilty Engineer and JavaScript/TypeScript Developer.On the path to become a Clean Code Developer.Also rediscovering OOP-Principals and Design-Patterns.
  • Location
    Würzburg, Germany
  • Work
    Usability Engineer & Frontend Developer
  • Joined

Hi, I either don't understand 26. or I think this is bad advice for junior Devs:

26. Work from your strengths, not your weaknesses

Stop wasting time trying to fix apparent weaknesses.

If it takes you consistently >1 hour to do a task that others at your level accomplish in <5 minutes, steer clear of that task.

Likely, investing more energy won't make you exceptional at it.

Instead, do the essentials and concentrate on maximizing your strengths. If something comes naturally to you and is valuable, do it more 🚀.

If something (that is part of your job) is a pain in the a** then you need to improve your skills there. As a junior everything can become a struggle: do you have a hard time understanding code that usesasync/await? Go learnPromise. Especially as a junior something that takes a lot of time might actually be a lack of knowledge ("1. Master the fundamentals") and skills ("15. Master your dev tools 🛠️") like keyboard shortcuts, automation, advanced editing features, RegExp for Search&Replace, Refactoring Tools, ...

Once you are experienced and established enough you might be able to afford to avoid a task that is part of your job and that everybody else can do.

I find myself telling my managers "Well, Icould dothat task, but I have the high priority/value tasks X, Y, Z to do. I am not that familiar with this module and need to spend some time getting to know the details. Mid-Level Dev Q is able to do that task as-well and it probably takes them the same amount of time."

CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

Oh I definitely mentioned you need to master fundamentals. Like you can’t be doing frontend and not understand async, etc..
What I mean by focus on strengths is like maybe you are not comfortable with architecting code but you are amazing at building simple UIs/animations, etc. you should focus on that vs. the first one.
Frontend development is large and you have to choose the area where you can be one of the best.
Being average doesn’t pay off😅

CollapseExpand
 
htho profile image
Hauke T.
Usabilty Engineer and JavaScript/TypeScript Developer.On the path to become a Clean Code Developer.Also rediscovering OOP-Principals and Design-Patterns.
  • Location
    Würzburg, Germany
  • Work
    Usability Engineer & Frontend Developer
  • Joined

Frontend development is large and you have to choose the area where you can be one of the best.

Somehow this gives me a bad gut-feeling. Although the field is huge, and I know that in some way I am a specialist, some part of me deeply rejects the Idea that you need to specialize.

We need to learn constantly - and just because today I am bad at creating UIs, it doesn't mean that I should refuse to learn it, when that skill becomes necessary for me tomorrow.

Let me conclude by adding to your advice: "Always keep an open Mind. After you found X is hard, you will learn Y and Z, and some of that knowledge can be applied to X. Just because something is hard for you today, It doesn't mean it has to be when you need to learn it 5 years from now."

Thread Thread
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

I definitely see your point there. I will take an example to illustrate for myself. For example I am bad at coming up with UI/ thinking about the UX, etc. I put in a lot of work but no results whatsoever.
On the other hand, I am very comfortable with JavaScript, with hard problems,etc.
So I decide to rely on people better than me at UX and rely on my strengths instead.
I think we should do what makes us unique more 🙏

Thread Thread
 
bogdanbpeterson profile image
Bogdan B Peterson
  • Joined

this! teams don't exist for no reason, you can't do everything. yes, familiarize yourself with as much stuff as you can, even just to know it exists, but don't try to be a everything man

Thread Thread
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

💯 agree even if it is hard!

CollapseExpand
 
dancemove_marscode profile image
MarsCode
MarsCode provides an AI-powered IDE and an AI extension to assist your programming tasks.
• Edited on• Edited

Great tips! Additionally, for beginners, considering an AI-powered IDE or plugin,might be helpful.

CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

Thanks ! Yes copilot is definitely super helpful if you can afford it 😌

CollapseExpand
 
dancemove_marscode profile image
MarsCode
MarsCode provides an AI-powered IDE and an AI extension to assist your programming tasks.

Definitely, Copilot is great! Oops, sorry for the shameless plug, for those who are looking for aFREE option,MarsCode also offers advanced AI features. Worth checking out! 😊

CollapseExpand
 
dmiller72 profile image
David Miller
  • Location
    Kyle, Texas
  • Work
    Web designer and developer,
  • Joined

I'm a junior dev myself. I was able to both empathize and learn from this article. Thanks for taking the time and thought to write it.

CollapseExpand
 
_ndeyefatoudiop profile image
Ndeye Fatou Diop
Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Email
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

I am happy you like it. Hope you won’t make the same mistakes I did 😅.

CollapseExpand
 
anna8j profile image
Comment deleted
CollapseExpand
 
mehedilslamripon profile image
Mehedi Islam Ripon
Software Engineer at TechnoNext (US-Bangla Group) | Specializing in JavaScript, React.js, Next.js, Node.js, and GraphQL.
  • Email
  • Location
    Bangladesh
  • Education
    Dhaka International University
  • Work
    Software Engineer
  • Joined

don't spam!

CollapseExpand
 
archwin010 profile image
Godwin Archibong
A young lad keen about self-improvement
  • Joined

Thanks a lot for this piece, it's so timely! I am just starting out. Delving into JS, I am comfortable with HTML and CSS. JS ain't easy, but my goal is to learn and master it before adding frameworks. The truth is that, the learning journey is a never-ending process. I sure will take these tips to heart 😌🫡

Some comments may only be visible to logged-in visitors.Sign in to view all comments.

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

Hi 👋🏽, I am a self-taught Senior Front-End Engineer. I share tips to help overwhelmed junior frontend developers here => frontendjoy.com/ 😻🥳.
  • Location
    Asnieres-Sur-Seine, France
  • Work
    Senior Frontend Engineer
  • Joined

More fromNdeye Fatou Diop

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp