AST
↔ tree data struct to rep Source Code by organize JS Keywords for JS Engine
aka AST, Abstract-Syntax-Tree
JS Engine uses AST to check SyntaxError
& generate Machine Code
References
Parsing
↔ (process) to read Source Code & generate AST.Compilation
↔ (process) to converts AST into Machine CodeJS Interpreter
↔ JS Engine Component to check AST forSyntaxError
, handles ASI