Journey of JavaScript code.
There are 3 phases in which JS code is executed.
Parsing
Compilation
Execution
Parsing
In parsing phase, code is broken down into tokens and syntax parser converts these tokens into abstract syntax tree(AST).
AST is used by bytecode generator to fo...
manmodesanket.hashnode.dev4 min read