Back to search

Interpreted vs compiled, ECMAScript basics, and JavaScript engines

JavaScript is specified by ECMAScript, and modern engines use parsing, JIT compilation, and optimization rather than pure line-by-line interpretation.

JavaScript Medium Theory

Interpreted vs compiled, ECMAScript basics, and JavaScript engines

JavaScript is specified by ECMAScript, and modern engines use parsing, JIT compilation, and optimization rather than pure line-by-line interpretation.

  • ECMAScript is the language standard
  • Engines implement the spec
  • Modern engines optimize hot code paths

Interpreted vs compiled, ECMAScript basics, and JavaScript engines