JIT
Noun · Development
Definitions
Just-In-Time compilation — a technique where bytecode is compiled to native machine code at runtime rather than ahead of time, allowing optimizations based on actual usage patterns.
In plain English: Instead of translating your code to machine language before running it, JIT does it on the fly, making hot paths faster the more they run.
Example: "The JIT compiler noticed that loop ran a million times and optimized it down to raw assembly."