Mon, Jul 13

Daily Challenge

One question per day, deterministic by local date. Read it, think it through, mark it complete to extend your streak.

browser-internals · hard

Why does deleting object properties hurt V8 optimization?

V8 builds hidden classes (maps) per object shape. `delete` mutates the shape and forces the object into slow dictionary mode, evicting it from inline-cache fast paths.

Open question