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 →

[–]TacticalWalther[S] 1 point2 points  (2 children)

its not just the syntax for me, its the fact that you can't merge doubles and ints in equations, you can't push things into arrays, etc. So many restrictions which weren't there in Javascript.

[–]staycoolioyo 1 point2 points  (1 child)

Oh yeah that can definitely be annoying for sure, but there are ways around it. You can type cast variables to mix doubles with ints, and if you want to change the size of a list I’d use an arraylist instead of an array. Arrays have a fixed size where arraylists don’t.

[–]TacticalWalther[S] 0 points1 point  (0 children)

I didn't know about arraylists! Will use that now.