this post was submitted on 21 Jun 2023
5 points (100.0% liked)
No Stupid Questions (Developer Edition)
923 readers
1 users here now
This is a place where you can ask any programming / topic related to the instance questions you want!
For a more general version of this concept check out [email protected]
Icon base by Lorc under CC BY 3.0 with modifications to add a gradient
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Honestly, I'd advise against learning a js framework (at least at first).
Everything that you can do with a framework, you can also do with vanilla js (that's code for plain js without any frameworks).
So why should you focus on the language first?
My advice: use a code editor that has good support for js (e.g. vscode), do a bunch of js tutorials, and make yourself the following projects in order:
When you get stuck in any of these projects, that just means you've got more js to learn.
Gotcha, I will make those projects, thank you!