Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1
To me, Java is the easiest to learn because of the way that it "looks". For instance, when writing a method, you get to use a lot more detail, and have a lot more freedom when using the method. Java Method: public static void test(int arg, double arg1) { return arg; } JavaScript Method: function test(a, b) { return a; } With Java, you specify exactly what goes in, and what comes out, while JavaScript doesn't have a specification.
10th Mar 2017, 10:35 PM
NickB
NickB - avatar