718
the hardest exam question
(lemmy.ml)
Post funny things about programming here! (Or just rant about your favourite programming language.)
A script is just a file that can execute a series of commands without the need to compile
They compile in some point of time because CPU don't know shit about Javascript. But that is for some other discussion.
Edit: typo
Are you referring to AOT compilation specifically? JavaScript in V8 is JIT compiled if it's "hot" (executed enough that the cost of JIT compilation is less than the cost of continuing to run it in interpreted mode).