- Joined
- Oct 19, 2023
You can get by with Notepad and the JS tutorials on developer.mozilla.org. You don't even need to install anything to start programming. Note that Notepad doesn't have syntax highlighting (which is an extremely helpful thing to have when programming) so you could use Notepad++ instead. It has just barely the amount of features you need to comfortably write basic HTML and JS. If you happen to use Linux, it's also easy to get started with C and C++. Every programmer should know a bit about C, since it's very prevalent. You might even prefer it over JS for various reasons when you start to figure things out, but starting directly with those languages is quite difficult. It expects you to handle some things that most other languages do for you, and beginners have enough on their plate already without having to worry about all that. I recommend doing a little bit in JS until you have the vaguest inkling of what's going on. Make Pong or some other really simple game in an HTML <canvas> element or something, then you can branch into what you want to do.
Last edited: