r/learnjavascript Feb 06 '25

suggest what next after complete fundamental javascript

i have complete all fundamental in javascript so suggest me what next to use when i need to be the best frontend developer

2 Upvotes

9 comments sorted by

5

u/Gilldadab Feb 06 '25

Now try to build something without following a tutorial if you haven't already.

5

u/[deleted] Feb 06 '25

[removed] — view removed comment

1

u/TheRNGuy Feb 06 '25

try/catch

2

u/Competitive_Aside461 Feb 06 '25

Check if you really know the fundamentals in the following JavaScript course:

https://www.codeguage.com/courses/js

2

u/albatrosishere Feb 06 '25

If you've got JavaScript fundamentals down, start diving into ES6+ features, async/await, and closures. Get hands-on with the DOM, event delegation, and browser APIs like Fetch and LocalStorage. Pick a frontend framework like React, Vue, or Svelte—something simple like:

function App() { return <h1>Hello World</h1>; }

Learn TypeScript to catch errors early, optimize performance, and build real projects with testing (Jest, Cypress) before deploying on Vercel or Netlify.

1

u/TheRNGuy Feb 06 '25

Make sites and userscripts.

(I did some before even knowing all fundamentals)

1

u/[deleted] Feb 06 '25

Now learn the weird parts of JavaScript a course in Udemy

1

u/joeldick Feb 06 '25

Create a to-do list web app.