this post was submitted on 24 Sep 2023
214 points (93.1% liked)
Programmer Humor
32361 readers
273 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You seem to misunderstand my points.
And I don't think you want to.
I've directly addressed your points, and I get the impression that you're the one who's ignoring my points here. The reality is that blocking operations in js are handled using async calls, and reasoning about async code is inherently more difficult than sync code. Platforms that provide proper threading allow developers to write sync style code and handle blocking by using threads that are managed by the runtime. While you have workers in Js, it's pretty clear that they're not meant to be used in the same way, nor do people use them this way in practice.