Ever wonder how Javascript interprets your code under the hood?
Let's zoom out and see what the interpreter sees — and why it matters.
When we write Javascript, it's easy to think of it like a list of commands:
let name = "Alex";
console.log(name);
...