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 p
It can prevent functions from being inlined, which affects performance, though this shouldn't really happen.