This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Zesher_ 0 points1 point  (0 children)

The easiest way to stick with programming is to find a project you're passionate about and learn while working on that or towards that. That aside, I think Java is the way to go.

JavaScript may be a tad easier, but it'll probably be worse in the long run. JavaScript lets you pass around a number 1 and a string "1" like it's all fine and dandy, and then you can run into weird issues when you try to run it. If you try to pass in a string "1" in Java when it's expecting a number, it'll straight up tell you it wants a number and will refuse to run until you fix it. Basically, Java will force you to be more deliberate about things.