JIT Just-In-Time compiler
Compile code to machine code while the program runs — start interpreted, compile the hot parts.
V8 (Chrome/Node), HotSpot (Java JVM), PyPy. The "interpret first, compile when it pays off" model usually gives the best of both worlds: fast startup + near-native performance for long-running processes.