The ES6 Module system supports __________ import syntax, which is not possible in CommonJS.

  • Dynamic
  • Static
  • Deferred
  • Asynchronous
ES6 introduced static import syntax for modules, allowing developers to specify exactly what they want to import. This is not possible in CommonJS, where imports are dynamic and are resolved at runtime.
Add your answer
Loading...

Leave a comment

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