Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 763 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 763 Bytes

Advanced JavaScript Lessons

This repo contains information pertaining to my deep-dive into JavaScript learnings, taken from this video series.

Compiled vs Intepreted Language

JavaScript is a compiled language. An intepreted language is run line-by-line: the intepreter has no idea what to expect from the line that follows the currently intrepreted line. In a compiled languages, a compiler runs through code once to compile it initially, makes one more run-through, and then on the final pass it will execute the code.