How JavaScript’s ES Modules Algorithm Works

What is Common JS? What are ES Modules? How are they different, and more important – WHY are they different?JavaScript’s latest module system is a complete m… Read more

Similar

JavaScript Visualized: Prototypal Inheritance

Ever wondered why we can use built-in methods such as .length, .split(), .join() on our strings, arrays, or objects? We never explicitly specified them, where do they come from? Now don't say "It's JavaScript lol no one knows, it's magic πŸ§šπŸ»β€β™‚οΈ", it's actu... (more…)

Read more »

Dead Code Elimination in JavaScript

Dead code elimination is a process wherein code that is not used is excluded from the code that is executed. In many compile time languages this is a much easier process since a compiler can easily determine the code that is used. However in javascri... (more…)

Read more »