Easy
How to Use Dynamic Import in JavaScript for Lazy Loading Modules
How would you dynamically import a module in JavaScript only when it is needed?
1async function loadFeature() {2 const module = ______("path/to/feature");3 module.default();4}56loadFeature();