Hacker News new | ask | show | jobs
by iandanforth 3836 days ago
My experience is that the barrier to entry for JavaScript is not that it's a new language, but that you have to learn async thinking and are restricted to a single thread.

Does WebAssembly address either of those points?

1 comments

Regarding threads, I don't think so. And even if they would address threads, then there's still the problem of a shared address space between threads to be solved, and the implementation of mutexes, etc.