107
Ranking of the most energy-efficient programming languages
(lemmygrad.ml)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Why is there such a large jump from TS to JS?
good question, probably the transpiled code does not match the optimized js. Maybe, if they targeted the same js version as js version they are benchmarking, the results would be equivalent?
Also, if they are using a node version with ts support, it will compile the ts before execution which means they are measuring the impact of the compiler, which can be a lot for small snippets.