Remix.run Logo
jdiff 3 hours ago

JavaScript really isn't that slow. JIT compilation can wind up faster than AOT compilation. And much of the APIs called by JavaScript is natively-implemented browser code. JavaScript is faster than C# yet people implement games in C# (not the engine cores, but that's a very similar situation to JS) and don't bat an eye.

bcjdjsndon 3 hours ago | parent [-]

> JavaScript is faster than C#

Apples to oranges, scripts need an entire browser/Interpeter framework underneath it to even function

jdiff 3 hours ago | parent [-]

See the mentioned game engine reference which closely parallels this.