Question 7 of 10Pro Only
What is code splitting, and how does it improve application performance? Explain different code splitting strategies and when to use each one.
Sample answer preview
## What is Code Splitting? Code splitting is a technique that breaks your JavaScript bundle into smaller chunks that can be loaded on demand. Instead of sending one massive bundle with all application code, you send only what's needed for the current page or feature.
code splittinglazy loadingdynamic importwebpackSuspenseprefetch