Easy
This question is a daily question and will count towards your daily streak.
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();