37
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 06 Dec 2023
37 points (93.0% liked)
Programming
17314 readers
244 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 1 year ago
MODERATORS
Sweet thanks for laying out a simple progression path.
How good have you found ChatGPT to be? My understanding is that sometimes it's great but other times it's way off base. Then you have to figure out what went wrong and you know how the saying goes "You don't know what you don't know."
A tip I forgot to give: Use the debugger very early while learning JS, it's very helpful to understand what the code is doing.
It's great for snippets, or explaining simple code. It does fail often when hitting deep in some API, or when you want to do thing in a specific way because you know what you are doing. You have to talk a lot to it, if you want it to produce code for you.
But in your case, i recommend to never copy paste JS from ChatGPT, because it's your first programming language (html and css are not programming language), and making your brain used to code will be the most important thing I said to not copy, but you can ask questions to it, and it will be often correct, dont hesitate to send big chunks of your own code to chatgpt to get explanations.
Awesome, thanks for the clarification on that. Some very good tips to put into action.
ChatGPT should be plenty good for any foundational questions you have. And asking "how could I improve this code" with a code snippet can give you insight into better ways to do things. If you ask it for broad responses like "write me an app for relaxation sounds", I can guarantee that it won't work, but using it alongside a tutorial when you have questions or get an error can save so much time.