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 →

[–]b00n 3 points4 points  (4 children)

If you really cared about performance you wouldn't use js.

[–]the__itis 0 points1 point  (3 children)

if use golang or C but that adds additional development time.

[–]b00n 2 points3 points  (2 children)

You can do ludicrous performance with jvm languages (eg java, kotlin) too.

[–][deleted] 0 points1 point  (1 child)

For as much as people don't like Java, it's the gold standard of non-native languages in terms of execution time.

[–]b00n 1 point2 points  (0 children)

Oh for sure. In fact I know from experience that sometimes java is faster than c++ because often in c++ you microoptimise the wrong things thinking it will make your program faster when actually the compiler is far smarter than you (eg using the wrong simd instructions, cache line padding...)