>In the old times, Javascript was an interpreted language, but since many years ago it is implemented as a JIT (Just-In-Time) compiler, so it can approach speeds closer to the C language.
Looking at many benchmarks I've seen C#, Java, Go approaching the speed of C, but I never have seen Javascript doing that.
Perhaps is because it's dynamically typed and is harder for compiler and VM to optimize the generated code?