← All tags

How JS code gets executed in the browser

· 6 min read

We write JS code, and then send it to the client's browser, where it is executed. To write better code, it's good to have an understanding of how the code we write is going to be executed. This post explores how Chrome's JS engine (V8) runs JS code efficiently.

#learnings #JavaScript

Know Thy (JS) Tools

· 4 min read

Understanding the tooling is crucial to understand what exactly is happening to the code we write, which helps us write better, bug-free code. This post is a collection of notes I made to understand more about the tools used in the JavaScript ecosystem.

#craft #JavaScript
← Back to all posts