Dynamic Imports (import())

What aspect of dynamic imports is illustrated in this example?
// Using dynamic import for a library with a side effect
button.addEventListener('click', async () => {
  await import('chart.js');
  // Global Chart object is now available
  new Chart(ctx, config);
});
Next Question (22/43)