Skip to content
React·Advanced·Conceptual·1 min read

How can virtualization help a long list's render performance?

Short interview answer

It renders only the list items currently visible in the viewport, plus a small buffer, instead of every item in the underlying data, so the render and DOM node count stay roughly constant regardless of list length.

Key takeaway

Explain the underlying mental model clearly, then support it with a concrete example and its trade-offs.

← Back to React performance optimization

Related questions