PACKED to HOLEY: How JS Arrays Fall Down the Optimization Ladder
TL;DR: V8 gives every array a hidden type. Arrays with no gaps (packed) are fast. Arrays with gaps (holey) are slow, and an array can move from fast to slow but never back. On my machine, a holey arra
malharmorey.hashnode.dev8 min read