Hacker News new | ask | show | jobs
by paradite 1477 days ago
Is this kind of parallelization possible on only compiled language? Or is it also possible for interpreted language like JavaScript?
1 comments

The same considerations apply, though not always. JavaScript can be JIT compiled, though the JIT might not make the same optimisations as a C compiler. It's running on the same CPU though.