Offtopic: On 12/21/2012 01:06 AM, Ryan Schmidt wrote: > JavaScript is interpreted, not compiled.
That's not true. The language by itself does not require the VM to either interpret or compile the code. V8 in fact does compile the code into an intermediate format called Hydrogen. (not assembly). It will even update this intermediate code on the fly, so you cant really categorize it as interpreted. danmilon. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
