siriusmart@lemmy.ml to Programmer Humor@lemmy.ml · 1 year agothe hardest exam questionlemmy.mlimagemessage-square173fedilinkarrow-up1740arrow-down123
arrow-up1717arrow-down1imagethe hardest exam questionlemmy.mlsiriusmart@lemmy.ml to Programmer Humor@lemmy.ml · 1 year agomessage-square173fedilink
minus-squareshastaxc@lemm.eelinkfedilinkarrow-up7·1 year agoA script is just a file that can execute a series of commands without the need to compile
minus-squareCentaur@lemmy.worldlinkfedilinkarrow-up2·edit-21 year agoThey compile in some point of time because CPU don’t know shit about Javascript. But that is for some other discussion. Edit: typo
minus-squaredan@upvote.aulinkfedilinkarrow-up1·1 year agoAre 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).
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).