What syntax is used to handle the promise returned by a dynamic import?

  • await import('module')
  • import('module').then()
  • dynamicImport('module')
  • import('module').catch()
The correct syntax to handle the promise returned by a dynamic import is import('module').then(). You use the then method to perform actions once the module has been successfully loaded. The catch method can be used for error handling if the dynamic import fails.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *