Is there an alternative to javascript for the web that can do multi-threading and synchronous execution?
- by rambodash
I would like to program web applications as I do with desktop programming languages, where the code is synchronously executed and browser doesn't freeze when doing loops.
Yes I know there are workarounds using callbacks and setTimeout, but they are all workarounds after all and they don't give the same flexibility when programming in the orthodox…