Am I correct to say that JavaScript code isn't compiled, not even JIT? If so, does that mean that comments have an affect on performance, and I should be very careful where I put place my comments? Such as placing function comments above and outside the function definition when possible, and definitely avoid placing comments inside loops, if I wanted to maximize performance? I know that in most cases (at least in non-loop cases), the change in performance would be negligible, but I think that this would be something that is good to know and be aware of, especially for front-end/js developers. Also, a relevant question was asked on a js assessment I recently took.
|
No. Although JavaScript is traditionally an "interprted" language (although it needn't necessarily be), some engines, probably even most, compile it on-the-fly to some degree. V8 (the engine in Chrome and NodeJS) does so really quite thoroughly, in a two-step process (the first step applies standard optimizations; if it sees "hot spots" in the code, it recompiles that portion with aggressive optimizations). Even engines that are less aggressive almost certainly at least parse the text into some form of bytecode. Remember that "interpreted" vs. "compiled" is usually more of an environmental thing than a language thing; there are C interpreters, and there are JavaScript compilers. Languages tend to be closely associated with environments (like how JavaScript tends to be associated with the web browser environment, even though it's always been used more widely than that, even back in 1995), but even then (as we've seen), there can be variation.
A very, very, very minimal one, on the initial parsing stage. But comments are very easy to scan past, nothing to worry about. If you're really worried about it, though, you can minify your script with tools like Of course, the thing about JavaScript performance is that it's hard to predict reliably cross-engine, because the engines vary so much. So experiments can be fun:
Result? My take is that there's no discernable difference within the measurement error of the test. |
|||||||
|
|
The biggest effect that comments have is to bloat the file size and thereby slow down the download of the script. Hence why all professional sites use a minimizer for a productive version to cut the js down to as small as it gets. |
|||
|
|
|
It may have some effect. Very minimalistic effect, though (even IE6 handles comments correctly ! to be confirmed...). However, most people use a minifier that strips off comments. So it's okay. Also:
|
|||||||
|