|
|
|
|
|
by fruchtose
4906 days ago
|
|
I agree with a lot of what you said, but I can see one area where I can see what the author is trying to say. > How is javascript like assembly? You're right that JavaScript is not like assembly; it's more like bytecode. A number of different languages compile to JavaScript (CoffeeScript, TypeKit, Fay), which is then interpreted. While the intent of JavaScript is that it should be readable by humans, in practice this does not happen thanks to production minification. This is more like bytecode. For example, you can Java .class file with a hex editor, but you'll need software to do that, or a hex editor and a lot of time. tl;dr: The author means to say that JavaScript is used as a building block for other languages used to write client-side logic. |
|