SMRTR ProgrammingJun 18, 2025Daily.dev

Ace Your Next JavaScript Interview: `this`, `new`, Prototypes, Classes

SMRTR summary

JavaScript's `this` keyword, `new` operator, prototypes, and classes are explored in-depth. `this` is determined by how a function is called, not where it's defined. The `new` keyword creates objects and binds `this` to them. Prototypes form inheritance chains, while classes provide a syntax sugar over prototypes. The article recommends using composition over complex inheritance hierarchies for creating objects. It also notes that defining functions on prototypes can improve performance in certain scenarios.

SMRTR provides this summary for quick context. The original article belongs to Daily.dev.

Read the original article
SMRTR Programming

Get the next batch of curated stories in your inbox.

This archive is built from SMRTR newsletter stories. Subscribe for hand-picked stories without the extra noise.

Related Stories

Browse Programming
ProgrammingAug 23, 2026

Rust Glancer

Rust-analyzer's memory bloat stems from treating all 6,666 dependencies equally — a tiered, IntelliJ-style backend could fix that.