What is the default behavior of module resolution in ES6 when importing a module without specifying a file extension?
- Resolves to the module with the specified name
- Resolves to the module with the specified name, followed by ".js"
- Resolves to the module with the specified name, followed by ".mjs"
- Resolves to the module with the specified name, followed by ".json"
In ES6, when a module is imported without a file extension, the module resolution algorithm looks for the module with the specified name followed by ".js". If not found, it looks for the module with ".mjs" and then ".json". This flexibility allows developers to omit file extensions, and the resolution algorithm handles it accordingly.
Loading...
Related Quiz
- In a for...of loop, the _________ method of an iterable object is called to retrieve values.
- How does the static structure of ES6 Modules aid in tree shaking compared to CommonJS?
- If a class extends another class, the constructor of the child class must call _______ to access the parent's properties.
- In what way does the Spread Operator interact with iterables?
- The Array method __________ is an example of a higher-order function that takes a function as its argument.