Hacker News new | ask | show | jobs
by phplovesong 622 days ago
How can these even be compared? Go does concurrency on multiple CPU cores, and javascript one one. Go can so both IO and CPU bound tasks with the SAME way, and in javascript land you really dont do any CPU tasks async at all (makes no sense to do so).
2 comments

The async implementation is not shown in the article, but could easily do a number of things such as - http request with decoder information - worker threads
90% of Go code isn’t CPU bound so that’s irrelevant.
????